
/* ============== Sektion-CSS frÃ¥n index.html ============== */
  /* --- Hero ----------------------------------------- */
  .hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: var(--paper);
    padding-top: clamp(2rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
    background: var(--ink-blue-deep);
  }
  .hero__media {
    position: absolute; inset: 0; z-index: -2;
    background: linear-gradient(135deg, #B4542F 0%, #8E3F1F 60%, #1A3D95 100%);
  }
  .hero__media [data-hero-slide] {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity 1400ms var(--ease);
  }
  .hero__media [data-hero-slide].is-active { opacity: 1; }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(15,42,110,.15) 0%, rgba(15,42,110,.55) 60%, rgba(15,42,110,.85) 100%),
      linear-gradient(90deg, rgba(15,42,110,.55) 0%, transparent 55%);
  }
  .hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5rem) var(--gutter) clamp(2rem, 5vw, 3rem);
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: end;
    min-height: clamp(520px, 80vh, 760px);
  }
  @media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; min-height: clamp(560px, 90vh, 760px); }
  }
  .hero__eyebrow {
    color: var(--gold-soft);
    margin-bottom: 1.25rem;
  }
  .hero__eyebrow::before { background: var(--gold-soft); }
  .hero h1 {
    font-size: var(--t-hero);
    color: var(--paper);
    line-height: 1.04;
    letter-spacing: -0.025em;
    max-width: 18ch;
  }
  .hero__lede {
    margin-top: 1.5rem;
    color: rgba(255,252,246,.86);
    font-size: var(--t-body-lg);
    max-width: 40ch;
  }
  .hero__ctas {
    margin-top: 2.25rem;
    display: flex; flex-wrap: wrap; gap: 0.85rem;
  }
  .hero__meta {
    align-self: end;
    display: flex; flex-direction: column; gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--r-lg);
    background: rgba(247, 241, 230, 0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(247, 241, 230, 0.18);
    color: var(--paper);
  }
  .hero__meta strong { font-family: var(--font-head); font-weight: 600; }
  .hero__caption {
    font-size: 0.875rem;
    color: rgba(255,252,246,.85);
    line-height: 1.5;
  }
  .hero__caption::before {
    content: "â€œ";
    display: block;
    font-family: var(--font-head);
    font-size: 2.5rem;
    line-height: 0.5;
    color: var(--gold-soft);
    margin-bottom: 0.5rem;
  }
  .hero__pills {
    display: flex; flex-wrap: wrap; gap: 0.4rem;
  }
  .hero__pills .chip { background: rgba(247,241,230,0.16); color: var(--paper); border: 1px solid rgba(247,241,230,0.18); }
  .hero__rail {
    border-top: 1px solid rgba(247,241,230,0.18);
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    padding: 1.25rem var(--gutter);
    max-width: var(--container);
    margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255,252,246,.78);
  }
  @media (max-width: 720px) { .hero__rail { grid-template-columns: repeat(2, 1fr); } }
  .hero__rail strong { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--gold-soft); letter-spacing: -0.01em; }

  /* --- Detta hÃ¤nder -------------------------------------- */
  .pulse-strip {
    background: var(--brick-wash);
    padding: 0.85rem var(--gutter);
    display: flex; align-items: center; justify-content: center; gap: 0.85rem;
    font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; color: var(--brick-deep);
    text-align: center;
  }
  .pulse-dot {
    width: 0.55rem; height: 0.55rem; border-radius: 50%;
    background: var(--brick);
    box-shadow: 0 0 0 0 rgba(180,84,47,.55);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(180,84,47,.55); }
    70%  { box-shadow: 0 0 0 12px rgba(180,84,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(180,84,47,0); }
  }

  .events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 1100px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px)  { .events-grid { grid-template-columns: 1fr; } }

  /* --- How it works -------------------------------------- */
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    counter-reset: step;
  }
  @media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
  .step {
    counter-increment: step;
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-sm);
  }
  .step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 3rem;
    line-height: 1;
    color: var(--brick);
    letter-spacing: -0.04em;
    display: block;
    margin-bottom: 0.5rem;
  }
  .step h3 { margin-bottom: 0.5rem; }
  .step p  { color: var(--ink-soft); }
  .step__arrow {
    position: absolute;
    right: -0.85rem; top: 50%;
    transform: translateY(-50%);
    width: 2rem; height: 2rem;
    background: var(--brick); color: var(--paper);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    z-index: 2;
  }
  @media (max-width: 900px) {
    .step__arrow { right: 50%; top: auto; bottom: -1rem; transform: translateX(50%) rotate(90deg); }
  }

  /* --- Two paths ----------------------------------------- */
  .paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 900px) { .paths { grid-template-columns: 1fr; } }
  .path {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 420px;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem;
    color: var(--paper);
    isolation: isolate;
  }
  .path::before {
    content: ""; position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
  }
  .path::after {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(26,28,30,.05) 0%, rgba(26,28,30,.55) 60%, rgba(26,28,30,.85) 100%);
  }
  .path--boka::before {
    background-image: linear-gradient(135deg, rgba(180,84,47,.45), rgba(26,61,149,.45)), url("https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1400&q=80");
  }
  .path--engagera::before {
    background-image: linear-gradient(135deg, rgba(201,168,76,.35), rgba(26,61,149,.45)), url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1400&q=80");
  }
  .path h3 {
    color: var(--paper);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }
  .path p { color: rgba(255,252,246,.88); max-width: 32ch; margin-bottom: 1.25rem; }
  .path .chip { background: rgba(255,252,246,.18); color: var(--paper); backdrop-filter: blur(6px); border: 1px solid rgba(255,252,246,.22); margin-bottom: 1rem; align-self: flex-start; }

  /* --- Rooms preview ------------------------------------- */
  .rooms-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 1000px) { .rooms-preview { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px)  { .rooms-preview { grid-template-columns: 1fr; } }

  /* --- Packages ------------------------------------------ */
  .packages {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  @media (max-width: 1000px) { .packages { grid-template-columns: 1fr; } }
  .pkg {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: 0.85rem;
    position: relative;
    border-top: 6px solid var(--cream-deep);
  }
  .pkg--bas      { border-top-color: var(--ink-blue-soft); }
  .pkg--premium  { border-top-color: var(--ink-blue); }
  .pkg--standard {
    border-top-color: var(--gold);
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--paper) 22%);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
  }
  @media (max-width: 1000px) { .pkg--standard { transform: none; } }
  .pkg__badge {
    position: absolute; top: -0.7rem; left: 1.75rem;
    background: var(--gold); color: var(--ink-blue-deep);
    font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.4rem 0.75rem; border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
  }
  .pkg__name { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
  .pkg__price { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--ink-blue); letter-spacing: -0.02em; line-height: 1; }
  .pkg__price small { display: block; font-size: 0.85rem; color: var(--ink-faint); font-weight: 500; letter-spacing: 0; margin-bottom: 0.35rem; }
  .pkg__desc { color: var(--ink-soft); }
  .pkg__list { list-style: none; padding: 0; margin: 0.5rem 0 1.25rem; display: grid; gap: 0.55rem; }
  .pkg__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
  .pkg__list li::before {
    content: ""; flex: none; width: 1.1rem; height: 1.1rem; margin-top: 0.2rem;
    border-radius: 50%; background: var(--brick-wash);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 6.5L5 8.5L9 4' stroke='%238E3F1F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat; background-position: center;
  }
  .pkg .btn { margin-top: auto; }

  /* --- Catering teaser ----------------------------------- */
  .catering {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }
  @media (max-width: 900px) { .catering { grid-template-columns: 1fr; } }
  .catering__media {
    aspect-ratio: 5/4;
    border-radius: var(--r-xl);
    background-size: cover; background-position: center;
    background-image: linear-gradient(135deg, rgba(201,168,76,.18), rgba(26,61,149,.18)), url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1400&q=80");
    background-color: var(--brick);
    position: relative;
    box-shadow: var(--shadow-lg);
  }
  .catering__media::after {
    content: "FrÃ¥n 299 kr / person";
    position: absolute; bottom: 1.25rem; left: 1.25rem;
    background: var(--paper);
    color: var(--brick); font-family: var(--font-head); font-weight: 700;
    padding: 0.55rem 0.95rem; border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
  }

  /* --- Activities ---------------------------------------- */
  .activities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  @media (max-width: 1000px) { .activities { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px)  { .activities { grid-template-columns: 1fr; } }
  .activity {
    background: var(--paper);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
  }
  .activity:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .activity__media { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--cream-deep); }
  .activity__body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
  .activity__body h3 { font-size: 1.1rem; }
  .activity__body p { color: var(--ink-soft); font-size: 0.95rem; }
  .activity__count { margin-top: auto; padding-top: 0.6rem; color: var(--brick); font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }

  /* --- Membership ---------------------------------------- */
  .membership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  @media (max-width: 800px) { .membership { grid-template-columns: 1fr; } }
  .mship {
    background: var(--paper);
    border-radius: var(--r-lg);
    padding: 2rem;
    display: flex; flex-direction: column; gap: 0.5rem;
    border-left: 6px solid var(--brick);
  }
  .mship--forening { border-left-color: var(--gold); }
  .mship__price { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--ink-blue); letter-spacing: -0.02em; line-height: 1; }
  .mship__price small { display: block; font-size: 0.85rem; color: var(--ink-faint); font-weight: 500; }
  .mship .btn { align-self: flex-start; margin-top: 0.85rem; }

  /* --- About teaser -------------------------------------- */
  .about-teaser {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
  }
  @media (max-width: 900px) { .about-teaser { grid-template-columns: 1fr; } }
  .about-teaser__media {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.85rem;
    aspect-ratio: 1/1;
  }
  .about-teaser__media > div {
    background-size: cover; background-position: center;
    border-radius: var(--r-md);
    background-color: var(--cream-deep);
  }
  .about-teaser__media > div:nth-child(1) { grid-row: span 2; border-radius: var(--r-lg); }
  .about-teaser__stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-top: 2rem;
  }
  .about-teaser__stat strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    color: var(--brick);
    letter-spacing: -0.02em;
  }
  .about-teaser__stat span {
    font-size: 0.875rem;
    color: var(--ink-soft);
  }

  /* --- Final CTA ----------------------------------------- */
  .final-cta {
    text-align: center;
    padding: clamp(4rem, 9vw, 7rem) var(--gutter);
    background:
      radial-gradient(ellipse at top, rgba(201,168,76,.22) 0%, transparent 60%),
      radial-gradient(ellipse at bottom right, rgba(180,84,47,.25) 0%, transparent 50%),
      var(--ink-blue);
    color: var(--paper);
  }
  .final-cta h2 {
    color: var(--paper);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    max-width: 18ch; margin-inline: auto;
    line-height: 1.05;
  }
  .final-cta p {
    margin: 1.25rem auto 2rem;
    max-width: 44ch;
    color: rgba(255,252,246,.82);
    font-size: var(--t-body-lg);
  }
  .final-cta .btn-row { justify-content: center; }

  /* --- Contact card ------------------------------------- */
  .contact-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--paper);
    border-radius: var(--r-xl);
    padding: clamp(1.75rem, 4vw, 3rem);
    box-shadow: var(--shadow-md);
  }
  @media (max-width: 800px) { .contact-card { grid-template-columns: 1fr; } }
  .contact-card dl {
    display: grid; grid-template-columns: auto 1fr; gap: 0.75rem 1.5rem; margin: 1.5rem 0 0;
  }
  .contact-card dt {
    font-family: var(--font-head); font-weight: 600; color: var(--brick);
    font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding-top: 0.2rem;
  }
  .contact-card dd { margin: 0; font-size: 1.0625rem; color: var(--ink); }
  .contact-card dd a { border-bottom: 1px solid var(--ink-line); transition: border-color var(--t-fast); }
  .contact-card dd a:hover { border-color: var(--brick); color: var(--brick); }

k);
    font-size: var(--t-body-lg);
    line-height: 1.65;
  }
  .prose p.lede { font-size: 1.375rem; color: var(--ink-blue); line-height: 1.45; max-width: none; }
  .prose ul {
    padding: 0; margin: 1rem 0;
    list-style: none;
    display: grid; gap: 0.65rem;
  }
  .prose ul li {
    padding-left: 1.5rem;
    position: relative;
    font-size: var(--t-body-lg);
    line-height: 1.55;
  }
  .prose ul li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.7rem;
    width: 0.5rem; height: 0.5rem;
    background: var(--brick);
    border-radius: 50%;
  }
  .prose strong { color: var(--ink-blue); }

  .om-hero {
    background:
      radial-gradient(ellipse at top right, rgba(201,168,76,.20) 0%, transparent 60%),
      radial-gradient(ellipse at bottom left, rgba(180,84,47,.10) 0%, transparent 60%),
      var(--cream);
    padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    text-align: center;
  }
  .om-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -0.025em;
    max-width: 16ch;
    margin: 1rem auto 0;
  }
  .om-hero p {
    margin: 1.5rem auto 0;
    max-width: 32rem;
    color: var(--ink-soft);
    font-size: var(--t-body-lg);
    line-height: 1.55;
  }
  .om-hero__divider {
    width: 4rem; height: 4px;
    background: var(--brick);
    border-radius: 4px;
    margin: 2.5rem auto 0;
  }

  /* --- Focus areas grid -------------------------------- */
  .focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin: 2rem 0;
  }
  @media (max-width: 900px) { .focus-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .focus-grid { grid-template-columns: 1fr; } }
  .focus-card {
    background: var(--paper);
    border-radius: var(--r-md);
    padding: 1.25rem 1.25rem 1.5rem;
    border-top: 4px solid var(--brick);
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .focus-card:nth-child(2)  { border-top-color: var(--ink-blue); }
  .focus-card:nth-child(3)  { border-top-color: var(--gold); }
  .focus-card:nth-child(4)  { border-top-color: var(--brick); }
  .focus-card:nth-child(5)  { border-top-color: var(--ink-blue); }
  .focus-card:nth-child(6)  { border-top-color: var(--gold); }
  .focus-card:nth-child(7)  { border-top-color: var(--brick); }
  .focus-card__name {
    font-family: var(--font-head); font-weight: 600;
    color: var(--ink-blue);
    font-size: 1.05rem;
    letter-spacing: -0.005em;
  }
  .focus-card__desc { color: var(--ink-soft); font-size: 0.925rem; line-height: 1.5; }

  /* --- Group cards ------------------------------------ */
  .groups {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  @media (max-width: 800px) { .groups { grid-template-columns: 1fr; } }
  .group-card {
    background: var(--paper);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
  }
  .group-card__media {
    aspect-ratio: 16/10;
    background-size: cover; background-position: center;
    background-color: var(--cream-deep);
  }
  .group-card__body { padding: 1.25rem; }
  .group-card__name {
    font-family: var(--font-head); font-weight: 600; color: var(--ink-blue);
    font-size: 1.1rem; margin-bottom: 0.35rem;
  }
  .group-card__desc { color: var(--ink-soft); font-size: 0.925rem; line-height: 1.5; }

  /* --- Pull quote band -------------------------------- */
  .quote-band {
    background: var(--brick-wash);
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .quote-band blockquote {
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 var(--gutter);
    font-family: var(--font-head);
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.3;
    color: var(--ink-blue-deep);
    letter-spacing: -0.015em;
    text-align: center;
  }
  .quote-band blockquote::before {
    content: """;
    display: block;
    font-size: 4rem;
    line-height: 0.5;
    color: var(--brick);
    margin-bottom: 1.5rem;
    margin-top: 1rem;
  }
  .quote-band cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brick-deep);
    font-style: normal;
    font-family: var(--font-body);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* --- Stats -------------------------------------------- */
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
  }
  @media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
  .stat strong {
    display: block;
    font-family: var(--font-head); font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--brick);
    letter-spacing: -0.025em;
    line-height: 1;
  }
  .stat span { font-size: 0.875rem; color: var(--ink-soft); display: block; margin-top: 0.35rem; }

  /* --- Team ------------------------------------------- */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }
  @media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
  .team-card {
    text-align: center;
  }
  .team-card__photo {
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-size: cover; background-position: center;
    background-color: var(--cream-deep);
    margin-bottom: 0.85rem;
    box-shadow: var(--shadow-sm);
  }
  .team-card__name { font-family: var(--font-head); font-weight: 600; color: var(--ink-blue); }
  .team-card__role { font-size: 0.85rem; color: var(--ink-soft); }

  /* --- Logos band ------------------------------------- */
  .logos {
    display: flex; flex-wrap: wrap; gap: 0.85rem;
    margin: 1.5rem 0 0;
  }
  .logos .chip { padding: 0.65rem 1rem; font-size: 0.875rem; }

/* ============== Sektion-CSS frÃ¥n paket.html ============== */
  .page-hero {
    background:
      radial-gradient(ellipse at top right, rgba(201,168,76,.18) 0%, transparent 60%),
      var(--cream);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  }
  .page-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: end;
  }
  @media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; } }
  .page-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.04;
  }
  .page-hero__media {
    aspect-ratio: 5/4;
    border-radius: var(--r-xl);
    background-size: cover; background-position: center;
    background-image: linear-gradient(135deg, rgba(180,84,47,.18), rgba(26,61,149,.22)), url("https://images.unsplash.com/photo-1530023367847-a683933f4172?auto=format&fit=crop&w=1400&q=80");
    background-color: var(--brick);
    box-shadow: var(--shadow-lg);
  }
  .page-hero__chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.5rem; }

  /* --- Room rows (frÃ¥n lokaler) ----------------------- */
  .room {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    padding-block: clamp(3rem, 6vw, 5rem);
  }
  @media (max-width: 900px) { .room { grid-template-columns: 1fr; } }
  .room:nth-child(even) .room__media { order: 2; }
  @media (max-width: 900px) { .room:nth-child(even) .room__media { order: 0; } }
  .room__media {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--r-xl);
    overflow: hidden;
    background-color: var(--cream-deep);
    background-size: cover; background-position: center;
    box-shadow: var(--shadow-lg);
  }
  .room__media .chip { position: absolute; top: 1rem; left: 1rem; box-shadow: var(--shadow-sm); }
  .room__media .photo-caption {
    position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
    background: rgba(15,42,110,.75);
    color: var(--paper);
    backdrop-filter: blur(8px);
    padding: 0.6rem 0.9rem;
    border-radius: var(--r-md);
    font-size: 0.8rem; line-height: 1.4;
    font-style: italic;
  }
  .room__body { display: flex; flex-direction: column; gap: 0.85rem; }
  .room__body h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); line-height: 1.05; }
  .room__capacity {
    display: flex; gap: 0.6rem; flex-wrap: wrap;
  }
  .room__use { color: var(--ink-soft); }
  .room__price {
    margin-top: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--brick-wash);
    border-radius: var(--r-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
  }
  .room__price strong {
    font-family: var(--font-head); font-weight: 700;
    color: var(--brick-deep);
    font-size: 1.5rem;
    letter-spacing: -0.01em;
  }
  .room__price strong small { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
  .room__specs {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.5rem;
    padding-top: 0.85rem;
    font-size: 0.9rem;
    color: var(--ink-soft);
  }
  .room__specs div::before {
    content: "Â·";
    color: var(--brick);
    font-weight: 700;
    margin-right: 0.5rem;
  }

  /* --- Comparison table (paket) ---------------------- */
  .compare {
    background: var(--paper);
    border-radius: var(--r-xl);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
    overflow-x: auto;
  }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
  }
  .compare-table th, .compare-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--ink-line);
  }
  .compare-table thead th {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--cream);
    border-bottom: 2px solid var(--ink-line);
  }
  .compare-table thead th:first-child { background: transparent; }
  .compare-table thead th:nth-child(3) {
    background: var(--gold-soft);
    color: var(--ink-blue-deep);
  }
  .compare-table td {
    font-size: 0.975rem;
    color: var(--ink);
    text-align: center;
  }
  .compare-table td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
  .compare-table tr:hover td:not(:first-child) { background: rgba(180,84,47,.04); }
  .check {
    display: inline-flex; width: 1.5rem; height: 1.5rem;
    background: var(--brick-wash);
    border-radius: 50%;
    align-items: center; justify-content: center;
    color: var(--brick-deep);
    font-weight: 700;
  }
  .check--gold { background: var(--gold-soft); color: var(--gold-deep); }
  .dash { color: var(--ink-faint); }

  .menus { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  @media (max-width: 900px) { .menus { grid-template-columns: 1fr; } }
  .menu-card { background: var(--paper); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 0.75rem; }
  .menu-card h3 { font-size: 1.25rem; }
  .menu-card__price { font-family: var(--font-head); font-weight: 700; color: var(--brick); font-size: 1.5rem; }
  .menu-card__price small { font-size: 0.85rem; color: var(--ink-faint); font-weight: 500; }
  .menu-card ul { list-style: none; padding: 0; margin: 0; color: var(--ink-soft); font-size: 0.95rem; display: grid; gap: 0.3rem; }
  .menu-card ul li::before { content: "Â· "; color: var(--brick); font-weight: 700; }

  .example { background: var(--ink-blue); color: var(--paper); border-radius: var(--r-xl); padding: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
  @media (max-width: 800px) { .example { grid-template-columns: 1fr; } }
  .example h3 { color: var(--paper); }
  .example__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
  .example__list li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,252,246,.12); }
  .example__list strong { color: var(--gold-soft); }
  .example__total { margin-top: 1rem; padding: 1.25rem; background: rgba(247,241,230,0.08); border-radius: var(--r-md); display: flex; justify-content: space-between; align-items: center; }
  .example__total strong { font-family: var(--font-head); font-size: 2rem; color: var(--gold-soft); }
  .example__note { font-size: 0.8rem; color: rgba(255,252,246,.6); }

  .faq { display: grid; gap: 0.75rem; }
  .faq details { background: var(--paper); border-radius: var(--r-md); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); }
  .faq summary { cursor: pointer; list-style: none; font-family: var(--font-head); font-weight: 600; color: var(--ink-blue); display: flex; justify-content: space-between; align-items: center; }
  .faq summary::after { content: "+"; color: var(--brick); font-size: 1.5rem; transition: transform var(--t-base); }
  .faq details[open] summary::after { transform: rotate(45deg); }
  .faq details > p { margin-top: 0.75rem; color: var(--ink-soft); line-height: 1.6; }

/* ============== Boka-form (============== */
  .page-hero .stepper { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
  .stepper .pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.9rem; border-radius: var(--r-pill); background: var(--paper); border: 1px solid var(--ink-line); font-family: var(--font-head); font-weight: 500; font-size: 0.875rem; color: var(--ink-soft); }
  .stepper .pill strong { width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--cream-deep); color: var(--ink-soft); display: inline-flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
  .stepper .pill.is-current { background: var(--ink-blue); color: var(--paper); border-color: transparent; }
  .stepper .pill.is-current strong { background: var(--gold); color: var(--ink-blue-deep); }

  .booking { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: flex-start; }
  @media (max-width: 1000px) { .booking { grid-template-columns: 1fr; } }
  .b-step { background: var(--paper); border-radius: var(--r-xl); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
  .b-step__head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
  .b-step__num { flex: none; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--brick); color: var(--paper); font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
  .b-step__title { font-size: clamp(1.35rem, 2.5vw, 1.75rem); margin: 0; line-height: 1.15; }
  .b-step__sub { color: var(--ink-soft); margin-top: 0.25rem; font-size: 0.95rem; }

  .room-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
  @media (max-width: 700px) { .room-picker { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .room-picker { grid-template-columns: 1fr; } }
  .room-pick { display: flex; flex-direction: column; background: var(--cream); border: 2px solid transparent; border-radius: var(--r-md); overflow: hidden; cursor: pointer; transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base), border-color var(--t-base); position: relative; }
  .room-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .room-pick .room-pick__media { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--cream-deep); }
  .room-pick .room-pick__body { padding: 0.85rem 1rem 1rem; display: flex; flex-direction: column; gap: 0.2rem; }
  .room-pick__name { font-family: var(--font-head); font-weight: 600; color: var(--ink-blue); }
  .room-pick__cap { font-size: 0.825rem; color: var(--ink-soft); }
  .room-pick__price { font-family: var(--font-head); font-weight: 600; color: var(--brick); font-size: 0.875rem; }

  .field { display: flex; flex-direction: column; gap: 0.4rem; }
  .field > label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; }
  .field input, .field select, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.85rem 1rem; border-radius: var(--r-md); border: 1.5px solid var(--ink-line); background: var(--cream-soft); width: 100%; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brick); background: var(--paper); }
  .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 560px) { .grid-2 { grid-template-columns: 1fr; } }
  .choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  @media (max-width: 560px) { .choices { grid-template-columns: 1fr; } }
  .choice { background: var(--cream); border: 2px solid transparent; border-radius: var(--r-md); padding: 1rem 1.1rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.35rem; text-align: left; }
  .choice__title { font-family: var(--font-head); font-weight: 700; color: var(--ink-blue); font-size: 1.05rem; }
  .choice__detail { font-size: 0.85rem; color: var(--ink-soft); }

  .price-panel { background: var(--paper); border-radius: var(--r-xl); padding: 1.75rem; box-shadow: var(--shadow-md); position: sticky; top: 5.5rem; }
  @media (max-width: 1000px) { .price-panel { position: static; } }
  .price-panel__header { font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brick); margin-bottom: 0.5rem; }
  .price-panel__title { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink-blue); margin-bottom: 1.25rem; }
  .price-panel dl { margin: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
  .price-panel dl .row { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px dashed var(--ink-line); padding-bottom: 0.6rem; }
  .price-panel dl .row dt { color: var(--ink-soft); }
  .price-panel dl .row dd { margin: 0; font-weight: 600; }
  .price-panel__total { margin-top: 1.5rem; padding: 1.25rem; background: linear-gradient(135deg, var(--brick-wash) 0%, var(--gold-soft) 100%); border-radius: var(--r-md); }
  .price-panel__total strong { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--ink-blue-deep); }
  .submit { background: var(--ink-blue); color: var(--paper); border-radius: var(--r-xl); padding: 2rem; }
  .submit h2 { color: var(--paper); }

  /* --- Filter bar ------------------------------------ */
  .filterbar { position: sticky; top: 4.5rem; z-index: 30; background: rgba(247,241,230,.92); backdrop-filter: blur(12px); border-block: 1px solid var(--ink-line); padding: 0.85rem var(--gutter); display: flex; justify-content: center; }
  .filterbar__row { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; max-width: var(--container); width: 100%; }
  .filterbar__label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; color: var(--ink-soft); margin-right: 0.5rem; }
  .filter-chip { border: 1.5px solid var(--ink-line); background: transparent; color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: 0.875rem; padding: 0.5rem 0.9rem; border-radius: var(--r-pill); }
  .filter-chip.is-active { background: var(--brick); color: var(--paper); border-color: var(--brick); }
  .ladder { background: var(--paper); border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); }
  .ladder__row { display: grid; grid-template-columns: 9rem 1fr 4rem; align-items: center; gap: 1rem; font-family: var(--font-head); }
  .ladder__name { font-weight: 600; }
  .ladder__bar { height: 0.85rem; background: var(--cream-deep); border-radius: var(--r-pill); overflow: hidden; position: relative; }
  .ladder__bar::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: var(--w, 50%); background: linear-gradient(90deg, var(--brick) 0%, var(--gold) 100%); }
  .confirmation { display: none; text-align: center; padding: clamp(3rem, 6vw, 5rem) 1rem; background: var(--paper); border-radius: var(--r-xl); box-shadow: var(--shadow-lg); max-width: 720px; margin: 2rem auto; }
  .confirmation.is-active { display: block; }
  .help { display: flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.75rem 1rem; background: var(--light-blue); color: var(--ink-blue); border-radius: var(--r-md); }





/* === WpKit overrides (cascade winner v2) === */
:root { --container: 100% !important; --container-narrow: min(85vw, 980px) !important; --gutter: clamp(1.5rem, 5vw, 4rem) !important; }
body .container { max-width: 100% !important; padding-inline: var(--gutter) !important; }
body .container.narrow { max-width: var(--container-narrow) !important; }
/* Hero inner ocksÃ¥ wide */
body .hero__inner { max-width: 100% !important; padding-inline: clamp(2rem, 5vw, 5rem) !important; }
body .hero__rail { max-width: 100% !important; padding-inline: clamp(2rem, 5vw, 5rem) !important; }
body .site-header__inner { max-width: 100% !important; }
body .site-footer .container { max-width: 100% !important; }

/* Filter-fix: senare .room { display: grid } overrider .is-hidden */
.room.is-hidden { display: none !important; }
.room.is-fading { opacity: 0 !important; transform: translateY(8px) !important; }

/* WP layout-constrained override: lÃ¥t sektioner gÃ¥ full-bredd */
.entry-content.is-layout-constrained > *,
.entry-content > section,
.entry-content > main,
.entry-content > div,
.entry-content > article,
body .hero,
body main.surface-cream,
body main.surface-cream-deep { max-width: none !important; width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }

/* Ord-brytning: ta bort text-wrap balance som splittrar ord */
body .hero h1, body .page-hero h1, body .om-hero h1 { text-wrap: pretty !important; word-break: keep-all !important; overflow-wrap: normal !important; hyphens: manual !important; }

/* === Ã…terstÃ¤lld pkg-big CSS (saknades i split-paste) === */
.packages-big {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 1000px) { .packages-big { grid-template-columns: 1fr; } }
.pkg-big {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  border-top: 8px solid var(--cream-deep);
}
.pkg-big--bas     { border-top-color: var(--ink-blue-soft); }
.pkg-big--premium { border-top-color: var(--ink-blue); }
.pkg-big--standard {
  border-top-color: var(--gold);
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--paper) 18%);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
@media (max-width: 1000px) { .pkg-big--standard { transform: none; } }
.pkg-big__badge {
  position: absolute; top: -0.85rem; left: 2rem;
  background: var(--gold); color: var(--ink-blue-deep);
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
}
.pkg-big__name {
  font-family: var(--font-head); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.pkg-big__price {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--ink-blue);
  letter-spacing: -0.025em; line-height: 1;
}
.pkg-big__price small {
  display: block; font-size: 0.85rem; color: var(--ink-faint);
  font-weight: 500; letter-spacing: 0; margin-bottom: 0.4rem;
}
.pkg-big__desc { color: var(--ink-soft); font-size: 1rem; max-width: 32ch; }
.pkg-big__list { list-style: none; padding: 0; margin: 0.5rem 0 1.5rem; display: grid; gap: 0.7rem; }
.pkg-big__list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.975rem; }
.pkg-big__list li::before {
  content: ""; flex: none; width: 1.2rem; height: 1.2rem; margin-top: 0.15rem;
  border-radius: 50%; background: var(--brick-wash);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M3 6.5L5 8.5L9 4' stroke='%238E3F1F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.pkg-big .btn { align-self: flex-start; margin-top: auto; }

/* === WpKit override v4 â€” section-head--split lugnare brytning (2026-05-28) === */
body .section-head--split {
  gap: 3rem !important;
}
body .section-head--split > div:first-child {
  max-width: 42ch !important;
  flex: 1 1 56% !important;
}
body .section-head--split > div:last-child {
  max-width: 44ch !important;
  flex: 1 1 40% !important;
}
body .section-head--split h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem) !important;
  line-height: 1.12 !important;
  text-wrap: balance !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}
@media (max-width: 900px) {
  body .section-head--split {
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
  body .section-head--split > div:first-child,
  body .section-head--split > div:last-child {
    max-width: none !important;
    flex: 1 1 100% !important;
  }
}
/* === end override v4 === */


/* UtstÃ¤llarformulÃ¤r â€“ toggle */
.tt-form-toggle{max-width:860px;margin:0 auto;border:1px solid rgba(26,61,149,.18);border-radius:16px;background:#fff;overflow:hidden;}
.tt-form-toggle>summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.15rem 1.6rem;font-family:'Poppins',sans-serif;font-weight:600;font-size:1.08rem;color:#1a3d95;}
.tt-form-toggle>summary::-webkit-details-marker{display:none;}
.tt-form-toggle>summary::after{content:'+';font-size:1.8rem;line-height:1;color:#b4542f;font-weight:400;}
.tt-form-toggle[open]>summary::after{content:'‘2';}
.tt-form-toggle[open]>summary{border-bottom:1px solid rgba(26,61,149,.12);}
.tt-form-toggle__body{padding:1.4rem 1.6rem 1.7rem;}
