:root {
  --bg: #060606;
  --panel: #0d0d0f;
  --panel-2: #141417;
  --text: #f4f1ea;
  --muted: #b7b0a4;
  --muted-2: #777166;
  --gold: #3a3a3a;
  --gold-2: #f4f1ea;
  --line: rgba(244, 241, 234, 0.12);
  --box-line: rgba(244, 241, 234, 0.22);
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 999;
  background-image: linear-gradient(135deg, rgba(255,255,255,.05) 25%, transparent 25%), linear-gradient(225deg, rgba(255,255,255,.04) 25%, transparent 25%);
  background-size: 4px 4px;
}

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(100% - 32px, var(--max));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-logo {
  width: 112px;
  height: auto;
  max-height: 74px;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-size: 0.98rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links a {
  transition: color .2s ease;
  white-space: nowrap;
  line-height: 1.1;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--bg) !important;
  background: var(--gold-2);
  padding: 11px 16px;
  border-radius: 999px;
  white-space: nowrap;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255,255,255,.08), 0 10px 26px rgba(0,0,0,.35);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #ffffff;
  margin: 5px auto;
  border-radius: 999px;
}

.nav-menu-hint {
  display: none;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,6,.96) 0%, rgba(6,6,6,.78) 48%, rgba(6,6,6,.55) 100%),
    
    linear-gradient(135deg, rgba(255,255,255,.06) 0 1px, transparent 1px 100%);
  background-size: auto, auto, 72px 72px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 430px);
  align-items: start;
  gap: 46px;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.eyebrow {
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .18em;
  font-weight: 800;
  margin: 0 0 18px;
}

h1, h2, h3 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: .95;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 7.6rem);
  max-width: 1080px;
}

.hero-title-line {
  display: block;
}

.hero-title-top {
  white-space: nowrap;
}

.hero-title-middle {
  white-space: nowrap;
}

.hero-title-bottom {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-lead {
  max-width: 780px;
  font-size: 1.12rem;
  margin: 28px 0 34px;
}

.hero-lead-stack p {
  margin: 0 0 14px;
}

.hero-lead-stack p:last-child {
  margin-bottom: 0;
}

.hero-lead-stack strong {
  color: var(--text);
  font-weight: 900;
}

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


.hero-logo-inline {
  margin-top: 42px;
  width: 100%;
  max-width: 560px;
  display: flex;
  justify-content: center;
}

.hero-logo-inline-image {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,.42));
}

@media (max-width: 720px) {
  .hero-logo-inline {
    max-width: 420px;
    margin-top: 36px;
    justify-content: center;
  }

  .hero-logo-inline-image {
    max-width: 100%;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.button.primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #f4f1ea, #d9d9d9);
  box-shadow: none;
}

.button.ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.04);
}

.button.full {
  width: 100%;
}

.button.big-cta {
  min-height: 68px;
  padding: 0 34px;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
  max-width: 720px;
}

.hero-stats div {
  padding: 22px;
  border: 1px solid var(--box-line);
  background: rgba(255,255,255,.035);
  border-radius: 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.25rem;
}

.hero-stats span {
  display: block;
  color: var(--muted-2);
  margin-top: 6px;
  font-size: .9rem;
}

.hero-logo-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 160px;
  min-height: 430px;
}

.hero-logo {
  width: min(100%, 430px);
  max-width: 430px;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 48px rgba(0,0,0,.44));
}

.intro-band {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.band-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.band-grid p {
  margin: 0;
  max-width: 840px;
  font-size: 1.05rem;
}

.band-grid a {
  color: var(--gold-2);
  font-weight: 800;
  white-space: nowrap;
}

.two-col,
.price-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.section-heading p {
  max-width: 610px;
  margin-top: 22px;
}

.section-heading.centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 54px;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
}

.schedule-card,
.price-card,
.contact-card,
.split-card,
.cta-card {
  border: 1px solid var(--box-line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.schedule-card {
  overflow: hidden;
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr .9fr;
  gap: 18px;
  padding: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row span {
  color: var(--gold-2);
  font-weight: 800;
}

.schedule-row strong {
  font-size: 1.05rem;
}

.schedule-row em {
  color: #fff;
  font-style: normal;
  text-align: right;
}


.schedule-row-compact {
  grid-template-columns: 1fr auto;
}

.schedule-row-compact em {
  text-align: right;
}

.schedule-row.optional {
  background: rgba(255,255,255,.04);
}

.dark-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,0));
}

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

.feature {
  min-height: 310px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--box-line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature span {
  color: var(--gold-2);
  font-weight: 900;
}

.feature p {
  margin-bottom: 0;
}

.philosophy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    var(--panel);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.philosophy-card p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 16.6px;
  line-height: 1.85;
}

.philosophy-card p:first-child {
  color: var(--text);
}

.philosophy-card p:last-child {
  margin-bottom: 0;
}

.split-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  padding: 46px;
}

.price-section {
  background:
    none;
}

.price-card {
  padding: 34px;
}

.price-label {
  margin: 0 0 8px;
  color: var(--gold-2);
  font-weight: 800;
}

.price {
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.price span {
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 8px;
}

.membership-note {
  margin: 18px 0 0;
  max-width: 36ch;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}

.price-card li {
  color: var(--muted);
  padding-left: 26px;
  position: relative;
}

.price-card li::before {
  content: "•";
  color: var(--gold-2);
  position: absolute;
  left: 0;
}

.cta-section {
  padding-top: 70px;
}

.cta-card {
  text-align: center;
  padding: 70px 36px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    var(--panel);
}

.cta-card p {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  padding: 34px;
}

.contact-card a {
  display: inline-block;
  color: var(--gold-2);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.small-note {
  color: var(--muted-2);
  font-size: .92rem;
}


.page-hero {
  padding-top: 165px;
  padding-bottom: 36px;
}

.page-hero .section-heading {
  max-width: 920px;
}

.page-hero .section-heading.centered {
  margin-bottom: 0;
}

.page-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.quicklink-card {
  padding: 28px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.quicklink-card strong {
  display: block;
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.quicklink-card p {
  margin: 0 0 18px;
}

.quicklink-card a {
  color: var(--gold-2);
  font-weight: 800;
}

.single-card-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.single-card-wrap .price-card,
.single-card-wrap .contact-card,
.single-card-wrap .schedule-card,
.single-card-wrap .cta-card {
  width: 100%;
}

@media (max-width: 920px) {
  .page-quicklinks {
    grid-template-columns: 1fr;
  }
}


.contact-form-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.contact-section {
  padding-top: 4px;
}

.contact-intro {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-form {
  border: 1px solid var(--box-line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  padding: 34px;
  display: grid;
  gap: 14px;
}

.contact-form label {
  color: var(--text);
  font-weight: 800;
}

.contact-form label span {
  color: var(--muted-2);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--box-line);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 0 16px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}

.contact-form button {
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}


.required-star {
  color: var(--text);
  font-weight: 900;
  margin-left: 4px;
}

.hidden-field {
  display: none;
}

@media (max-width: 560px) {
  .contact-form {
    padding: 24px;
  }
}


.legal-section {
  padding-top: 4px;
}

.legal-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 26px;
}

.legal-card h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: var(--text);
}


.legal-card p:first-of-type {
  color: var(--text);
  font-size: 1.1rem;
}

.legal-card a {
  color: var(--gold-2);
  font-weight: 800;
}

@media (max-width: 1500px) {
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    flex: 0 0 auto;
  }

  .nav-menu-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 72px;
    top: 20px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,.92);
    background: rgba(255,255,255,.10);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,.38);
    animation: menuPulse 1.4s ease-in-out infinite;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 86px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--box-line);
    border-radius: 22px;
    background: rgba(13,13,15,.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }
}


.price-card .button.big-cta {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  padding-top: 16px;
  padding-bottom: 16px;
}


/* Subtil guld/lyxig känsla på alla sidor */
.page-hero {
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,0));
}

.card,
.price-card,
.philosophy-card,
.contact-form,
.legal-card,
.quicklink-card {
  box-shadow: 0 26px 80px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.03);
}

.quicklink-card:hover,
.card:hover {
  border-color: rgba(255,255,255,.18);
}

.nav-cta {
  box-shadow: none;
}

.brand-logo {
  filter: drop-shadow(0 10px 22px rgba(255,255,255,.06));
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--gold-2);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

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

  .nav-links {
    position: fixed;
    inset: 86px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--box-line);
    border-radius: 22px;
    background: rgba(13,13,15,.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 10px;
  }

  .hero-grid,
  .two-col,
  .price-grid,
  .contact-grid,
  .split-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo-panel {
    min-height: 300px;
    padding-top: 24px;
    justify-content: center;
  }

  .hero-logo {
    width: min(100%, 320px);
    max-width: 320px;
  }

  .hero-stats,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .band-grid,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-row {
    grid-template-columns: 1fr;
  }

  .schedule-row em {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, var(--max));
  }

  .section {
    padding: 70px 0;
  }

  .nav {
    width: min(100% - 24px, var(--max));
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    width: 92px;
    height: auto;
    max-height: 62px;
  }

  h1 {
    font-size: clamp(3.3rem, 16.5vw, 4.8rem);
  }

  .hero-title-top,
  .hero-title-middle,
  .hero-title-bottom {
    white-space: normal;
  }

  .hero-title-middle {
    white-space: nowrap;
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .button.big-cta {
    width: 100%;
    min-height: 64px;
    padding: 0 24px;
  }

  .hero-stats div,
  .price-card,
  .contact-card,
  .split-card,
  .cta-card,
  .philosophy-card {
    padding: 24px;
  }
}


.nav-toggle[aria-expanded="true"] + .nav-menu-hint {
  opacity: .82;
}

@keyframes menuPulse {
  0%, 100% {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0,0,0,.38);
  }
  50% {
    transform: translateX(-6px);
    box-shadow: 0 12px 34px rgba(255,255,255,.12);
  }
}

@media (max-width: 560px) {
  .nav-menu-hint {
    right: 66px;
    top: 23px;
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.74rem;
  }

  .nav-toggle {
    width: 50px;
    height: 50px;
  }
}


/* Helt svart bakgrund på hela hemsidan */
html,
body {
  background: #000 !important;
  background-image: none !important;
}

main,
.section,
.hero,
.hero-bg,
.page-hero,
.dark-panel,
.price-section,
.cta-section,
.contact-section,
.legal-section,
.footer {
  background: #000 !important;
  background-image: none !important;
}

.site-header {
  background: rgba(0, 0, 0, 0.92) !important;
}

.noise {
  display: none !important;
}


/* Stor centrerad logga längst ner på startsidan */
.home-bottom-logo-section {
  padding-top: 18px;
  padding-bottom: 70px;
}

.home-bottom-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-bottom-logo-image {
  display: block;
  width: min(100%, 980px);
  max-width: 980px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .home-bottom-logo-section {
    padding-top: 10px;
    padding-bottom: 48px;
  }

  .home-bottom-logo-image {
    width: min(100%, 760px);
  }
}


/* Mobilfix: rubriker, texter och layout ska rymmas utan sidscroll */
img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

.hero-copy,
.section-heading,
.single-card-wrap,
.legal-wrap,
.contact-form-wrap,
.price-card,
.contact-form,
.legal-card,
.philosophy-card,
.schedule-card,
.split-card {
  min-width: 0;
}

@media (max-width: 768px) {
  html,
  body,
  main,
  .site-header,
  .nav,
  .container,
  .section,
  .hero,
  .page-hero {
    max-width: 100%;
    overflow-x: clip;
  }

  .nav {
    width: calc(100% - 24px);
    gap: 10px;
    height: 78px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 82px;
    max-height: 56px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .nav-menu-hint {
    right: 58px;
    top: 18px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
    max-width: calc(100vw - 150px);
    overflow: hidden;
  }

  .nav-links {
    inset: 78px 12px auto 12px;
    max-width: calc(100vw - 24px);
    overflow-x: hidden;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .page-hero {
    padding-top: 126px;
    padding-bottom: 24px;
  }

  .container {
    width: calc(100% - 24px);
  }

  h1 {
    font-size: clamp(2.45rem, 12.5vw, 4.1rem);
    line-height: 0.94;
    max-width: 100%;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 0.98;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-title-top,
  .hero-title-middle,
  .hero-title-bottom {
    white-space: normal !important;
  }

  .hero-lead,
  .section-heading p,
  .contact-card p,
  .legal-card p,
  .philosophy-card p,
  .price-card p,
  .membership-note {
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-actions .button,
  .button.big-cta,
  .button.ghost,
  .button.primary {
    width: 100%;
  }

  .price {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .price span {
    display: inline-block;
    margin-top: 8px;
    margin-left: 0;
  }

  .schedule-row,
  .schedule-row-compact {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .schedule-row strong,
  .schedule-row em,
  .schedule-row span {
    text-align: left;
  }

  .contact-form,
  .legal-card,
  .price-card,
  .philosophy-card,
  .split-card,
  .cta-card {
    padding: 22px;
    overflow: hidden;
  }

  .contact-form input,
  .contact-form textarea {
    min-width: 0;
  }

  .home-bottom-logo-section {
    padding-top: 8px;
    padding-bottom: 34px;
  }

  .home-bottom-logo-image {
    width: min(100%, 520px);
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 20px);
  }

  .nav {
    width: calc(100% - 20px);
    height: 76px;
  }

  .brand-logo {
    width: 78px;
    max-height: 52px;
  }

  .nav-menu-hint {
    right: 54px;
    top: 18px;
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.68rem;
    max-width: calc(100vw - 138px);
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .hero {
    padding-top: 112px;
  }

  .page-hero {
    padding-top: 118px;
  }

  .hero-lead p,
  .legal-card p,
  .philosophy-card p,
  .price-card li,
  .contact-form label {
    font-size: 0.98rem;
  }
}


/* Ljudspelare på sidan Vår träningsfilosofi */
.philosophy-audio-section {
  padding-top: 12px;
  padding-bottom: 28px;
}

.philosophy-audio-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 28px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  text-align: center;
}

.philosophy-audio-prompt {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.45;
}

.philosophy-audio-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.45rem;
  line-height: 1;
  vertical-align: -2px;
}

.philosophy-audio-player {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .philosophy-audio-section {
    padding-top: 8px;
    padding-bottom: 20px;
  }

  .philosophy-audio-card {
    padding: 20px;
  }

  .philosophy-audio-prompt {
    font-size: 1rem;
  }

  .philosophy-audio-arrow {
    display: block;
    margin: 8px 0 0;
  }
}


.schedule-update-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.schedule-update-note strong {
  color: var(--text);
  font-weight: 900;
}

@media (max-width: 768px) {
  .schedule-update-note {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}


.nav-member-cta {
  margin-left: 2px;
}

@media (max-width: 1500px) {
  .nav-member-cta {
    margin-left: 0;
    margin-bottom: 0;
  }
}


.member-application-button {
  margin-top: 28px;
  border: 0;
  cursor: default;
}

@media (max-width: 768px) {
  .member-application-button {
    width: 100%;
  }
}


/* Bli medlem-sidan */
.member-page {
  padding-top: 145px;
  padding-bottom: 80px;
}

.member-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 54px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.member-eyebrow {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.member-price {
  margin: 0;
  max-width: none;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.member-terms {
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.35;
}

.member-intro {
  max-width: 800px;
  margin: 26px 0 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.7;
}

.member-form {
  display: grid;
  gap: 20px;
}

.member-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.member-field {
  display: block;
}

.member-field input {
  width: 100%;
  min-height: 68px;
  padding: 0 22px;
  border: 2px solid rgba(244,241,234,.25);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  font: inherit;
  font-size: 1.08rem;
  outline: none;
}

.member-field input::placeholder {
  color: rgba(244,241,234,.58);
}

.member-field input:focus {
  border-color: rgba(244,241,234,.7);
  box-shadow: 0 0 0 4px rgba(255,255,255,.07);
}

.member-consents {
  display: grid;
  gap: 24px;
  margin: 14px 0 8px;
}

.member-consent-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.member-consent-row input[type="checkbox"] {
  width: 26px;
  height: 26px;
  margin: 0;
  accent-color: #f4f1ea;
  cursor: pointer;
}

.member-consent-row label {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.member-consent-row a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.member-consent-row a:hover {
  color: #ffffff;
}

.member-submit-button {
  width: 100%;
  min-height: 112px;
  margin-top: 10px;
  padding: 20px 28px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, #f4f1ea, #d9d9d9);
  color: #080808;
  cursor: default;
  font: inherit;
  text-align: center;
}

.member-submit-title,
.member-submit-subtitle {
  display: block;
}

.member-submit-title {
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 900;
  letter-spacing: .015em;
}

.member-submit-subtitle {
  margin-top: 8px;
  font-size: clamp(.95rem, 2vw, 1.18rem);
  font-weight: 800;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 768px) {
  .member-page {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .member-card {
    padding: 28px 22px;
  }

  .member-name-grid {
    grid-template-columns: 1fr;
  }

  .member-field input {
    min-height: 62px;
  }

  .member-submit-button {
    min-height: 120px;
    padding: 20px 18px;
  }
}


.member-required-star {
  display: inline-block;
  margin-left: 5px;
  color: var(--text);
  font-weight: 900;
}

.member-submit-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  filter: grayscale(1);
}

.member-submit-button:not(:disabled) {
  cursor: pointer;
  opacity: 1;
  filter: none;
}


/* Adress och Google Maps på sidan PROVA PÅ! */
.trial-location-section {
  padding-top: 12px;
  padding-bottom: 80px;
}

.trial-location-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.trial-location-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.trial-address {
  margin: 18px 0 24px;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 800;
}

.trial-map-wrap {
  overflow: hidden;
  border: 1px solid var(--box-line);
  border-radius: 20px;
  background: #0d0d0f;
}

.trial-map {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

@media (max-width: 768px) {
  .trial-location-section {
    padding-top: 4px;
    padding-bottom: 48px;
  }

  .trial-location-card {
    padding: 22px;
  }

  .trial-map {
    height: 360px;
  }
}


/* Hitta hit-sidan */
.directions-page {
  padding-top: 145px;
  padding-bottom: 80px;
}

.directions-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}

.directions-card h1 {
  margin: 0;
  max-width: 900px;
}

.directions-text {
  max-width: 820px;
  margin-top: 28px;
}

.directions-text p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.75;
}

.directions-text p + p {
  margin-top: 22px;
}

.directions-map-wrap {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--box-line);
  border-radius: 20px;
  background: #0d0d0f;
}

.directions-map {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

@media (max-width: 768px) {
  .directions-page {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .directions-card {
    padding: 28px 22px;
  }

  .directions-map {
    height: 360px;
  }
}


/* Språkval: svenska och engelska */
.nav {
  justify-content: flex-start;
}

.nav-links {
  margin-left: auto;
}

.nav-toggle {
  margin-left: auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: 10px;
}

.language-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  padding: 3px;
  border: 1px solid rgba(244,241,234,.22);
  border-radius: 7px;
  background: rgba(255,255,255,.035);
  opacity: .62;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.language-option img {
  display: block;
  width: 26px;
  height: 17px;
  border-radius: 2px;
  object-fit: cover;
}

.language-option:hover,
.language-option:focus-visible {
  opacity: 1;
  border-color: rgba(244,241,234,.75);
  transform: translateY(-1px);
  outline: none;
}

.language-option.is-active {
  opacity: 1;
  border-color: rgba(244,241,234,.92);
  background: rgba(255,255,255,.10);
}

@media (max-width: 768px) {
  .language-switcher {
    margin-left: 4px;
    gap: 4px;
  }

  .language-option {
    width: 30px;
    height: 24px;
    padding: 3px;
  }

  .language-option img {
    width: 23px;
    height: 15px;
  }
}

@media (max-width: 360px) {
  .language-option {
    width: 27px;
    height: 22px;
    padding: 2px;
  }

  .language-option img {
    width: 21px;
    height: 14px;
  }
}


/* ================================================================
   COOKIE- OCH SAMTYCKESSYSTEM
   ================================================================ */

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-modal-overlay[hidden],
.consent-resource-placeholder[hidden],
[data-consent-category][hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2200;
  border: 1px solid rgba(244,241,234,.28);
  border-radius: 24px;
  background: rgba(9,9,10,.98);
  box-shadow: 0 24px 80px rgba(0,0,0,.68);
  backdrop-filter: blur(18px);
}

.cookie-banner-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cookie-banner-copy h2,
.cookie-modal h2,
.cookie-category h3 {
  margin: 0;
  color: var(--text);
}

.cookie-banner-copy h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
}

.cookie-banner-copy p {
  max-width: 760px;
  margin: 10px 0 7px;
  color: var(--muted);
  line-height: 1.55;
}

.cookie-info-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner-actions {
  justify-content: flex-end;
}

.cookie-choice-button,
.cookie-inline-button,
.footer-cookie-links button,
.cookie-close-button {
  font: inherit;
}

.cookie-choice-button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 850;
  cursor: pointer;
}

.cookie-choice-equal {
  border: 1px solid rgba(244,241,234,.78);
  background: #f4f1ea;
  color: #080808;
}

.cookie-choice-equal:hover,
.cookie-choice-equal:focus-visible {
  background: #ffffff;
  outline: 3px solid rgba(244,241,234,.22);
  outline-offset: 2px;
}

.cookie-choice-secondary {
  border: 1px solid rgba(244,241,234,.38);
  background: transparent;
  color: var(--text);
}

.cookie-choice-secondary:hover,
.cookie-choice-secondary:focus-visible {
  border-color: rgba(244,241,234,.82);
  background: rgba(255,255,255,.08);
  outline: none;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,.76);
  overflow-y: auto;
}

.cookie-modal {
  width: min(100%, 820px);
  max-height: min(90vh, 900px);
  overflow-y: auto;
  border: 1px solid rgba(244,241,234,.28);
  border-radius: 26px;
  background: #0d0d0f;
  box-shadow: 0 28px 100px rgba(0,0,0,.78);
}

.cookie-modal-header {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line);
}

.cookie-modal-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.cookie-modal-header p {
  margin: 10px 0 0;
  line-height: 1.55;
}

.cookie-close-button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(244,241,234,.28);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-close-button:hover,
.cookie-close-button:focus-visible {
  background: rgba(255,255,255,.08);
  border-color: rgba(244,241,234,.72);
  outline: none;
}

.cookie-category-list {
  display: grid;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.cookie-category h3 {
  font-size: 1.08rem;
}

.cookie-category p {
  margin: 7px 0 0;
  line-height: 1.5;
}

.cookie-category-status {
  display: inline-block;
  margin-top: 8px;
  color: var(--text);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .03em;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

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

.cookie-switch-track {
  position: relative;
  width: 54px;
  height: 30px;
  border: 1px solid rgba(244,241,234,.34);
  border-radius: 999px;
  background: #262629;
  transition: .2s ease;
}

.cookie-switch-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d7d3cb;
  transition: transform .2s ease, background .2s ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  background: #f4f1ea;
  border-color: #f4f1ea;
}

.cookie-switch input:checked + .cookie-switch-track::after {
  transform: translateX(24px);
  background: #080808;
}

.cookie-switch input:focus-visible + .cookie-switch-track {
  outline: 3px solid rgba(244,241,234,.26);
  outline-offset: 3px;
}

.cookie-switch input:disabled + .cookie-switch-track {
  opacity: .66;
  cursor: not-allowed;
}

.cookie-modal-actions {
  padding: 24px 28px 28px;
}

.consent-resource-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
    #0d0d0f;
}

.consent-resource-placeholder p {
  max-width: 520px;
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.cookie-inline-button {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(244,241,234,.75);
  border-radius: 14px;
  background: #f4f1ea;
  color: #080808;
  font-weight: 850;
  cursor: pointer;
}

.cookie-inline-button:hover,
.cookie-inline-button:focus-visible {
  background: #ffffff;
  outline: 3px solid rgba(244,241,234,.22);
  outline-offset: 2px;
}

.footer-grid {
  gap: 14px;
}

.footer-cookie-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  margin-left: auto;
}

.footer-cookie-links a,
.footer-cookie-links button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.footer-cookie-links a:hover,
.footer-cookie-links button:hover,
.footer-cookie-links a:focus-visible,
.footer-cookie-links button:focus-visible {
  color: var(--text);
  outline: none;
}

.cookie-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 22px 0 30px;
}

.cookie-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 14px;
  border: 1px solid var(--box-line);
  color: var(--muted);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.cookie-table th {
  color: var(--text);
  background: rgba(255,255,255,.045);
}

.cookie-page-settings {
  margin: 20px 0 8px;
}

@media (max-width: 900px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 20px;
  }

  .cookie-banner-inner {
    padding: 18px;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-choice-button {
    width: 100%;
  }

  .cookie-modal-overlay {
    padding: 8px;
  }

  .cookie-modal {
    border-radius: 20px;
  }

  .cookie-modal-header,
  .cookie-category,
  .cookie-modal-actions {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cookie-category {
    gap: 14px;
  }

  .footer-cookie-links {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .consent-resource-placeholder {
    min-height: 260px;
    padding: 22px;
  }
}


/* Allmänna villkor */
.terms-card h3 {
  scroll-margin-top: 120px;
}

.terms-card strong {
  color: var(--text);
}

.terms-card p {
  overflow-wrap: anywhere;
}
/* ================================================================
   NY LAYOUT FÖR TRÄNINGSFILOSOFIN
   ================================================================ */

.philosophy-showcase-section {
  padding-top: 148px;
  padding-bottom: 48px;
}

.philosophy-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  gap: 36px;
  align-items: stretch;
}

.philosophy-quote-card {
  min-width: 0;
  height: 100%;
  padding: 48px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.philosophy-quote-card .eyebrow {
  margin: 0 0 26px;
  color: var(--text);
}

.philosophy-quote-card h1 {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.15vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: center;
  overflow-wrap: normal;
}

.philosophy-video-column {
  display: grid;
  gap: 26px;
  align-content: start;
}

.philosophy-video-card {
  min-width: 0;
}

.philosophy-video-card h2 {
  margin: 0 0 11px;
  color: var(--text);
  font-size: clamp(.96rem, 1.35vw, 1.12rem);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
}

.philosophy-video-embed {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--box-line);
  border-radius: 18px;
  background: #0d0d0f;
}

.philosophy-video-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.philosophy-video-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
  padding: 22px;
  z-index: 1;
}

.philosophy-video-placeholder p {
  font-size: .92rem;
  line-height: 1.5;
}

.philosophy-reading-section {
  padding-top: 48px;
}

.philosophy-reading-shell {
  width: min(100% - 40px, 1500px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 980px) minmax(180px, 1fr);
  gap: 28px;
  align-items: start;
}

.philosophy-reading-card {
  grid-column: 2;
  width: 100%;
  max-width: 980px;
  margin: 0;
}

.philosophy-reading-spacer {
  grid-column: 1;
}

.philosophy-audio-aside {
  grid-column: 3;
  position: sticky;
  top: 118px;
}

.philosophy-audio-card-compact {
  width: 100%;
  margin: 0;
  padding: 22px;
  text-align: left;
}

.philosophy-audio-card-compact .philosophy-audio-prompt {
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.4;
}

.philosophy-audio-hint {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}

.philosophy-audio-card-compact .philosophy-audio-player {
  width: 100%;
  min-width: 0;
  margin: 0;
}

@media (max-width: 1250px) {
  .philosophy-showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 470px);
  }

  .philosophy-reading-shell {
    width: min(100% - 40px, 1180px);
    grid-template-columns: minmax(0, 1fr) minmax(220px, 260px);
  }

  .philosophy-reading-spacer {
    display: none;
  }

  .philosophy-reading-card {
    grid-column: 1;
  }

  .philosophy-audio-aside {
    grid-column: 2;
  }
}

@media (max-width: 1000px) {
  .philosophy-showcase-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-quote-card {
    min-height: 420px;
  }

  .philosophy-video-column {
    grid-template-columns: 1fr;
  }

  .philosophy-reading-shell {
    grid-template-columns: 1fr;
  }

  .philosophy-audio-aside {
    grid-column: 1;
    grid-row: 1;
    position: static;
    width: min(100%, 980px);
    margin: 0 auto;
  }

  .philosophy-reading-card {
    grid-column: 1;
    grid-row: 2;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .philosophy-showcase-section {
    padding-top: 112px;
    padding-bottom: 30px;
  }

  .philosophy-showcase-grid {
    gap: 28px;
  }

  .philosophy-quote-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .philosophy-quote-card h1 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .philosophy-video-column {
    gap: 24px;
  }

  .philosophy-video-card h2 {
    font-size: 1rem;
  }

  .philosophy-video-embed {
    border-radius: 15px;
  }

  .philosophy-video-placeholder {
    padding: 16px;
  }

  .philosophy-video-placeholder .cookie-inline-button {
    width: 100%;
  }

  .philosophy-reading-section {
    padding-top: 30px;
  }

  .philosophy-reading-shell {
    width: min(100% - 40px, 980px);
    gap: 20px;
  }

  .philosophy-audio-card-compact {
    padding: 20px;
  }
}


/* ================================================================
   VÅR LOKAL – STRUKTURERAT BILDGALLERI
   ================================================================ */

.venue-page-hero {
  padding-bottom: 34px;
}

.venue-gallery-section {
  padding-top: 0;
  padding-bottom: 88px;
}

.venue-gallery {
  display: grid;
  gap: 24px;
}

.venue-gallery-row {
  display: grid;
  gap: 24px;
}

.venue-gallery-row-entrance {
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
}

.venue-gallery-row-floor {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.venue-photo {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--box-line);
  border-radius: 22px;
  background: #0d0d0f;
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.venue-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 72%, rgba(0,0,0,.18));
  opacity: .45;
  transition: opacity .25s ease;
}

.venue-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}

.venue-photo:hover img,
.venue-photo:focus-visible img {
  transform: scale(1.018);
  filter: brightness(1.035);
}

.venue-photo:hover::after,
.venue-photo:focus-visible::after {
  opacity: .18;
}

.venue-photo:focus-visible {
  outline: 3px solid rgba(244,241,234,.55);
  outline-offset: 4px;
}

.venue-photo-featured {
  aspect-ratio: 16 / 8.4;
}

.venue-gallery-row-entrance .venue-photo-portrait {
  aspect-ratio: 4 / 5;
}

.venue-gallery-row-entrance .venue-photo-landscape {
  aspect-ratio: 4 / 3;
}

.venue-gallery-row-floor .venue-photo {
  aspect-ratio: 4 / 3;
}

.venue-lightbox {
  width: min(94vw, 1500px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(244,241,234,.28);
  border-radius: 22px;
  background: #050505;
  box-shadow: 0 35px 110px rgba(0,0,0,.82);
}

.venue-lightbox::backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(5px);
}

.venue-lightbox-image {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 21px;
}

.venue-lightbox-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(244,241,234,.55);
  border-radius: 50%;
  background: #0d0d0f;
  color: var(--text);
  font: inherit;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}

.venue-lightbox-close:hover,
.venue-lightbox-close:focus-visible {
  background: #1a1a1d;
  border-color: rgba(244,241,234,.9);
  outline: none;
}

@media (max-width: 900px) {
  .venue-gallery-row-entrance,
  .venue-gallery-row-floor {
    grid-template-columns: 1fr;
  }

  .venue-gallery-row-entrance .venue-photo-portrait {
    aspect-ratio: 4 / 5;
    max-width: 680px;
    margin: 0 auto;
  }

  .venue-photo-featured,
  .venue-gallery-row-entrance .venue-photo-landscape,
  .venue-gallery-row-floor .venue-photo {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 768px) {
  .venue-page-hero {
    padding-bottom: 24px;
  }

  .venue-gallery-section {
    padding-bottom: 52px;
  }

  .venue-gallery,
  .venue-gallery-row {
    gap: 16px;
  }

  .venue-photo {
    border-radius: 16px;
  }

  .venue-lightbox {
    width: calc(100vw - 20px);
    border-radius: 16px;
  }

  .venue-lightbox-image {
    border-radius: 15px;
  }

  .venue-lightbox-close {
    top: 8px;
    right: 8px;
  }
}


/* Startsida – ort under huvudrubriken */
.hero-title-location {
  margin-top: 0.16em;
  font-size: 0.56em;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-title-location {
    margin-top: 0.2em;
    font-size: 0.58em;
    white-space: normal;
  }
}


/* ================================================================
   OM OSS
   ================================================================ */

.about-page-hero {
  padding-bottom: 34px;
}

.about-team-section {
  padding-top: 0;
  padding-bottom: 46px;
}

.about-team-grid {
  width: min(100%, 1040px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-person-card {
  min-width: 0;
}

.about-photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--box-line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)),
    #0d0d0f;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-person-info {
  padding: 20px 6px 0;
  text-align: center;
}

.about-person-info h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.about-person-info p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 1rem;
}

.about-story-section {
  padding-top: 26px;
  padding-bottom: 88px;
}

.about-story-card {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    var(--panel);
}

.about-story-card p {
  margin: 0;
  color: #ffffff;
  font-size: 16.6px;
  line-height: 1.85;
}

.about-story-card p + p {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .about-page-hero {
    padding-bottom: 24px;
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-person-card {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .about-story-section {
    padding-top: 18px;
    padding-bottom: 54px;
  }

  .about-story-card {
    padding: 26px 22px;
  }

  .about-story-card p {
    font-size: 16px;
    line-height: 1.78;
  }
}


/* Om oss – ljudspelare */
.about-audio-card {
  width: min(100%, 980px);
  margin: 0 auto 24px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 26px;
  align-items: center;
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    var(--panel);
}

.about-audio-copy {
  min-width: 0;
}

.about-audio-title {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.4;
}

.about-audio-description {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

.about-audio-player {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .about-audio-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }
}


/* ================================================================
   HEADERFIX FÖR PC – FÖRHINDRAR ATT MENYN PRESSAS IHOP
   ================================================================ */

@media (min-width: 769px) {
  .nav {
    gap: 18px;
  }

  .brand {
    flex: 0 0 auto;
    min-width: 0;
  }

  .brand-text {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.15;
  }

  .language-switcher {
    margin-left: 2px;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    flex: 0 0 54px;
    margin-left: auto;
  }

  .nav-menu-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 72px;
    top: 20px;
    min-height: 40px;
    padding: 0 14px;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .06em;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0,0,0,.38);
    animation: none;
    z-index: 2;
  }

  .nav-links {
    position: fixed;
    inset: 86px max(16px, calc((100vw - var(--max)) / 2)) auto auto;
    display: none;
    width: min(430px, calc(100vw - 32px));
    max-height: calc(100vh - 106px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 18px;
    border: 1px solid var(--box-line);
    border-radius: 22px;
    background: rgba(13,13,15,.985);
    box-shadow: 0 24px 70px rgba(0,0,0,.52);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 16px;
    border-radius: 12px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255,255,255,.055);
    outline: none;
  }

  .nav-links .nav-cta {
    margin-top: 10px;
    text-align: center;
  }
}


/* Cookieinformation – tydliga namn i tjänstetabellen */
.cookie-service-name,
.cookie-service-type {
  display: block;
}

.cookie-service-name {
  color: inherit;
  font-weight: 400;
  line-height: 1.5;
}

.cookie-service-type {
  margin-top: 4px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 400;
  line-height: 1.4;
}


/* Vårt pris – kompakt provträningsknapp och tydligare betalningstext */
.price-card .membership-note {
  max-width: 62ch;
}

.price-card .membership-note a {
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.price-card .price-trial-cta {
  width: auto;
  min-height: 56px;
  padding: 0 24px;
  font-size: 1rem;
  line-height: 1.2;
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .price-card .price-trial-cta {
    width: auto;
    max-width: 100%;
    min-height: 54px;
    padding: 12px 20px;
  }
}


/* Hitta hit – adress på två tydliga rader */
.directions-address span {
  display: block;
}


/* Startsida – centrera orten under Brasiliansk jiu-jitsu */
.hero-title-group {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.hero-title-group .hero-title-location {
  width: 100%;
  text-align: center;
}


/* Sidfot – exakt linjering av cookie-länk och cookie-knapp */
.footer-cookie-links {
  align-items: center;
}

.footer-cookie-links a,
.footer-cookie-links button {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin: 0;
  line-height: 1.3;
  vertical-align: middle;
}

.footer-cookie-links button {
  appearance: none;
  -webkit-appearance: none;
}


/* Cookieinställningar – knapp till fördjupad cookieinformation */
.cookie-modal-actions .cookie-choice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.cookie-modal-actions .cookie-more-button {
  white-space: nowrap;
}


/* ================================================================
   STARTSIDA – TVÅSPALTSLAYOUT MED TEXTKORT OCH LOGGA
   ================================================================ */
.home-hero {
  min-height: 100svh;
  padding-top: 176px;
  padding-bottom: 76px;
  align-items: flex-start;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.home-hero-primary {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero-title {
  width: 100%;
  max-width: 610px;
  min-height: calc(3 * 0.96em);
  font-size: clamp(2.65rem, 3.7vw, 3.3rem);
  line-height: 0.96;
  text-align: center;
}

.home-hero-title .hero-title-group {
  margin-left: auto;
  margin-right: auto;
}

.home-hero-actions {
  width: 100%;
  max-width: 610px;
  margin-top: 34px;
  justify-content: center;
}

.home-hero-actions .button {
  flex: 1 1 0;
  min-height: 68px;
  font-size: 1.08rem;
}

.home-hero-actions .button.primary,
.home-hero-actions .button.ghost {
  color: #0a0a0a;
  border-color: #ffffff;
  background: #ffffff;
}

.home-hero-logo-wrap {
  width: 100%;
  max-width: 610px;
  margin-top: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-hero-logo {
  display: block;
  width: 100%;
  max-width: 590px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.46));
}

.home-hero-text-card {
  min-width: 0;
  align-self: start;
  padding: clamp(30px, 3.3vw, 46px);
  border: 1px solid var(--box-line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.home-hero-text {
  max-width: none;
  margin: 0;
  font-size: 1.04rem;
}

.home-hero-text p {
  margin-bottom: 18px;
}

.home-hero-text p:last-child {
  margin-bottom: 0;
}

/* Den tidigare separata logosektionen används inte längre på startsidan. */
.home-hero + .home-bottom-logo-section {
  display: none;
}

@media (max-width: 980px) {
  .home-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 62px;
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: stretch;
  }

  .home-hero-primary {
    align-items: center;
    text-align: center;
  }

  .home-hero-title {
    max-width: 610px;
  }

  .home-hero-title .hero-title-group {
    margin-left: auto;
    margin-right: auto;
  }

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

  .home-hero-logo-wrap {
    max-width: 620px;
    margin-top: 38px;
  }

  .home-hero-text-card {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .home-hero-grid {
    gap: 30px;
  }

  .home-hero-title {
    font-size: clamp(2.25rem, 11.2vw, 4rem);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  .home-hero-title .hero-title-top,
  .home-hero-title .hero-title-middle {
    white-space: normal !important;
  }

  .home-hero-actions {
    width: 100%;
    max-width: 520px;
    margin-top: 28px;
    flex-direction: column;
  }

  .home-hero-actions .button {
    width: 100%;
    flex: none;
  }

  .home-hero-logo-wrap {
    max-width: 520px;
    margin-top: 32px;
  }

  .home-hero-logo {
    max-width: 100%;
  }

  .home-hero-text-card {
    padding: 26px 22px;
    border-radius: 22px;
    overflow: hidden;
  }

  .home-hero-text {
    font-size: 1rem;
  }

  .home-hero-text p {
    overflow-wrap: break-word;
  }
}

@media (max-width: 420px) {
  .home-hero {
    padding-top: 106px;
    padding-bottom: 36px;
  }

  .home-hero-title {
    font-size: clamp(2.05rem, 10.7vw, 3.2rem);
    letter-spacing: -0.045em;
  }

  .home-hero-actions {
    margin-top: 24px;
  }

  .home-hero-logo-wrap {
    margin-top: 28px;
  }

  .home-hero-text-card {
    padding: 23px 19px;
    border-radius: 20px;
  }

  .home-hero-text {
    font-size: 0.98rem;
  }
}

/* ================================================================
   V138 – verifierade korrigeringar
   ================================================================ */

/* Prova-på-knappen på startsidan ska vara exakt vit, även vid hover/fokus. */
.home-hero-actions .home-white-cta,
.home-hero-actions .home-white-cta:link,
.home-hero-actions .home-white-cta:visited,
.home-hero-actions .home-white-cta:hover,
.home-hero-actions .home-white-cta:focus,
.home-hero-actions .home-white-cta:focus-visible,
.home-hero-actions .home-white-cta:active {
  background: #ffffff !important;
  background-image: none !important;
  color: #0a0a0a !important;
  border-color: #ffffff !important;
  box-shadow: none !important;
}

/* ================================================================
   V141 – navigeringsknappar behåller sitt vita utseende vid hover
   ================================================================ */
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus,
.nav-links .nav-cta:focus-visible,
.nav-links .nav-cta:active {
  background: var(--gold-2) !important;
  background-image: none !important;
  color: var(--bg) !important;
  border-color: var(--gold-2) !important;
  outline: none;
}

/* ================================================================
   V144 – sidfoten hålls längst ned på kortare sidor
   ================================================================ */
html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  width: 100%;
  flex: 1 0 auto;
}

.footer {
  flex-shrink: 0;
  margin-top: auto;
}

/* ================================================================
   V145 – vit text i startsidans högra textruta
   ================================================================ */
.home-hero-text-card,
.home-hero-text-card p,
.home-hero-text-card strong,
.home-hero-text-card em,
.home-hero-text-card span {
  color: #ffffff !important;
}


/* ================================================================
   V147 – vit text på sidan Vårt pris
   ================================================================ */
.price-card,
.price-card .price-label,
.price-card .price,
.price-card .price span,
.price-card .membership-note,
.price-card li,
.price-card .membership-note a,
.price-card li a {
  color: #ffffff !important;
}

/* ================================================================
   V149 – vit text och tydligare avstånd på sidan Prova på
   ================================================================ */
.trial-page main,
.trial-page main h1,
.trial-page main h2,
.trial-page main h3,
.trial-page main p,
.trial-page main .eyebrow,
.trial-page main .trial-address,
.trial-page main strong,
.trial-page main em,
.trial-page main a:not(.button),
.trial-page main span {
  color: #ffffff !important;
}

.trial-page .page-hero .trial-intro {
  margin-top: 38px;
}

/* Den ljusa Google Maps-knappen behåller mörk text för läsbarhet. */
.trial-page main .cookie-inline-button,
.trial-page main .cookie-inline-button span {
  color: #0a0a0a !important;
}

@media (max-width: 768px) {
  .trial-page .page-hero .trial-intro {
    margin-top: 32px;
  }
}

/* ================================================================
   V151 – information om avtalsbekräftelse på sidan Bli medlem
   ================================================================ */
.member-confirmation-note {
  max-width: 800px;
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ================================================================
   V158 – tydligare rörelse för MENY/MENU-skylten
   ================================================================ */
@media (max-width: 1500px) {
  .nav-menu-hint {
    transform-origin: right center;
    animation: menuAttention 1.55s cubic-bezier(.45, 0, .25, 1) infinite !important;
    will-change: transform, box-shadow;
  }

  .nav-toggle[aria-expanded="true"] + .nav-menu-hint {
    animation-play-state: paused !important;
    transform: translateX(0) scale(1);
  }
}

@keyframes menuAttention {
  0%, 100% {
    transform: translateX(0) scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,.38);
  }
  32% {
    transform: translateX(-11px) scale(1.045);
    box-shadow: 0 12px 36px rgba(255,255,255,.22);
  }
  52% {
    transform: translateX(-4px) scale(1.015);
  }
  68% {
    transform: translateX(-8px) scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-menu-hint {
    animation: none !important;
    transform: none !important;
  }
}

/* ================================================================
   V159 – mobilanpassning av prisrutan
   ================================================================ */
@media (max-width: 768px) {
  .price-page {
    overflow-y: auto;
    scroll-padding-bottom: 140px;
  }

  .price-page .price-section {
    padding-top: 104px;
    padding-bottom: calc(132px + env(safe-area-inset-bottom, 0px));
    overflow: visible;
  }

  .price-page .single-card-wrap {
    width: 100%;
    max-width: 100%;
  }

  .price-page .price-card {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 24px 18px 30px;
    border-radius: 24px;
    overflow: visible;
  }

  .price-page .price-card .price {
    font-size: clamp(3.25rem, 15vw, 4.6rem);
    line-height: 0.98;
  }

  .price-page .price-card .price span {
    font-size: 1rem;
  }

  .price-page .price-card .membership-note,
  .price-page .price-card li {
    font-size: 0.96rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .price-page .price-card .membership-note {
    margin-top: 20px;
  }

  .price-page .price-card ul {
    margin: 22px 0 28px;
    gap: 12px;
  }

  .price-page .price-card li {
    padding-left: 22px;
  }

  .price-page .price-card .price-trial-cta {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    min-height: 54px;
    padding: 12px 16px;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .price-page .price-section {
    padding-top: 96px;
    padding-bottom: calc(144px + env(safe-area-inset-bottom, 0px));
  }

  .price-page .price-card {
    padding: 22px 16px 28px;
    border-radius: 22px;
  }

  .price-page .price-card .membership-note,
  .price-page .price-card li {
    font-size: 0.93rem;
    line-height: 1.5;
  }
}

/* ================================================================
   V160 – MENY/MENU-skylten är helt stilla
   ================================================================ */
.nav-menu-hint,
.nav-toggle[aria-expanded="true"] + .nav-menu-hint {
  animation: none !important;
  transform: none !important;
  will-change: auto !important;
}

/* ================================================================
   V161 – finjustering av prisrutan i mobilversion
   ================================================================ */
@media (max-width: 768px) {
  .price-page .container.single-card-wrap {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
    margin-left: auto;
    margin-right: auto;
  }

  .price-page .price-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  .price-page .container.single-card-wrap {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

