/* Festlokaler - globale styles */

:root {
  --red: #B02F1D;
  --red-dark: #8E2415;
  --ink: #2A2622;
  --ink-soft: #57504A;
  --paper: #F7F4EF;
  --paper-2: #FFFDFA;
  --line: #DED8CF;
  --shadow: 0 18px 40px -26px rgba(42, 38, 34, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: 'Newsreader', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--red); }

img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.rule {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  margin-bottom: 20px;
}

/* --- Topplinje --- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--red);
  color: #FFF6F2;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 62px;
}

.topbar a { color: #FFF6F2; }
.topbar a:hover { color: #FFF; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand img { height: 50px; width: auto; background: #FFF; border-radius: 50%; padding: 2px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }

.brand-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.brand-sub {
  white-space: nowrap;
  margin-top: 1px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.topnav a { position: relative; padding: 4px 0; white-space: nowrap; }

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.25s ease;
}

.topnav a:hover::after { right: 0; }

.btn-ghost {
  white-space: nowrap;
  border: 1px solid rgba(255, 246, 242, 0.7);
  padding: 8px 16px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover { background: #FFF6F2; color: var(--red) !important; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  background: #FFF6F2;
  color: var(--red) !important;
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta i { font-size: 13px; }

.btn-cta:hover {
  background: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -12px rgba(0, 0, 0, 0.45);
}

.burger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 246, 242, 0.55);
  background: transparent;
  color: #FFF6F2;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.burger:hover { background: #FFF6F2; color: var(--red); transform: translateY(-1px); }

/* --- Hamburgermeny --- */

.drawer {
  position: fixed;
  top: 62px;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: var(--ink);
  color: var(--paper);
  padding: 28px 26px;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  z-index: 70;
  overflow-y: auto;
  box-shadow: -24px 0 50px -30px rgba(0, 0, 0, 0.7);
}

.drawer.open { transform: translateX(0); }

.drawer a {
  display: block;
  color: var(--paper);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 21px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.16);
  transition: padding-left 0.2s ease, color 0.2s ease;
}

.drawer a:hover { padding-left: 8px; color: #F0B9AC; }

.drawer .drawer-meta {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.65);
}

.scrim {
  position: fixed;
  inset: 62px 0 0 0;
  background: rgba(42, 38, 34, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 65;
}

.scrim.open { opacity: 1; pointer-events: auto; }

/* --- Avishode --- */

.masthead {
  border-bottom: 3px double var(--ink);
  background: var(--paper);
}

.masthead .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 18px;
}

.masthead h2 { font-size: 42px; }

.masthead span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --- Hero --- */

.hero-media {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroIn 12s ease-out forwards;
}

@keyframes heroIn { from { transform: scale(1.03); } to { transform: scale(1.1); } }

.hero-inner {
  position: relative;
  width: 100%;
  padding: 120px 0 46px;
  background: linear-gradient(to top, rgba(28, 24, 21, 0.88) 0%, rgba(28, 24, 21, 0.55) 45%, rgba(28, 24, 21, 0) 100%);
  color: var(--paper);
}

.hero-inner .eyebrow { color: #F0B9AC; }

.hero-inner h1 {
  font-size: 62px;
  line-height: 1.02;
  margin: 12px 0 0;
  max-width: 18em;
  text-wrap: pretty;
}

.hero-inner .lead {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.86);
  margin: 16px 0 0;
  max-width: 32em;
  text-wrap: pretty;
}

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

.btn-solid, .btn-outline {
  display: inline-block;
  font-size: 15.5px;
  font-weight: 600;
  padding: 14px 26px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-solid { background: var(--red); color: #FFF6F2 !important; }

.btn-solid:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(176, 47, 29, 0.8);
}

.btn-outline { border: 1px solid rgba(247, 244, 239, 0.75); color: var(--paper) !important; }
.btn-outline:hover { background: var(--paper); color: var(--ink) !important; transform: translateY(-2px); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 34px;
  padding-bottom: 40px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.step b {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 30px;
  line-height: 0.9;
  color: var(--red);
  font-weight: 400;
}

.step p { margin: 0; font-size: 15.5px; line-height: 1.45; color: var(--ink-soft); }

/* --- Skjema --- */

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow);
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input, .field select {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 13px;
  border: 1px solid var(--line);
  background: #FFF;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(176, 47, 29, 0.12);
}

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn {
  display: inline-block;
  width: 100%;
  border: none;
  background: var(--red);
  color: #FFF6F2;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 600;
  padding: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -14px rgba(176, 47, 29, 0.7);
}

.btn-line {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-line:hover { background: var(--ink); color: var(--paper); }

.steps { margin-top: 30px; }

.step { display: flex; gap: 14px; padding: 9px 0; }

.step b {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  line-height: 1;
  color: var(--red);
  font-weight: 400;
}

.step p { margin: 0; font-size: 15px; line-height: 1.45; }

/* --- Kategorier --- */

.cats { padding: 20px 0 64px; }

.cats-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 3px double var(--ink);
  margin-bottom: 30px;
}

.cats-head h2 { font-size: 42px; margin-top: 8px; }

.cats-head p {
  margin: 0;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.cats-head p a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.cat-feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 178px;
  padding: 22px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--red);
  transition: height 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cat-card > * { position: relative; }

.cat-card .cat-name {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.14;
  overflow-wrap: break-word;
  hyphens: auto;
  transition: color 0.25s ease;
}

.cat-card .cat-note {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}

.cat-card i {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 13px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 22px 40px -22px rgba(176, 47, 29, 0.55);
}

.cat-card:hover::before { height: 100%; }
.cat-card:hover .cat-name { color: #FFF6F2; }
.cat-card:hover .cat-note { color: rgba(255, 246, 242, 0.82); }
.cat-card:hover i { opacity: 1; transform: none; color: #FFF6F2; }

.cat-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.cat-row {
  overflow-wrap: break-word;
  hyphens: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 19px;
  transition: padding-left 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cat-row i {
  font-size: 12px;
  color: var(--red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cat-row:hover { padding-left: 8px; color: var(--red); border-color: var(--red); }
.cat-row:hover i { opacity: 1; transform: none; }

/* --- Utleier-band --- */

.band { background: var(--ink); color: var(--paper); }

.band .wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px 28px;
}

.band h2 { font-size: 32px; line-height: 1.15; }

.band p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247, 244, 239, 0.78);
  margin: 12px 0 0;
  max-width: 48em;
}

.band a.btn-line { border-color: var(--paper); color: var(--paper); justify-self: end; }
.band a.btn-line:hover { background: var(--paper); color: var(--ink); }

/* --- Om oss / kontakt --- */

.cols .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.cols p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* --- FAQ: topp --- */

.faqtop {
  padding: 56px 0 34px;
  border-bottom: 3px double var(--ink);
}

.faqtop h1 { font-size: 58px; line-height: 1.02; margin: 10px 0 0; }

.faqtop .lead {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 36em;
  text-wrap: pretty;
}

.faq-search {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  max-width: 520px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 4px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(176, 47, 29, 0.12); }

.faq-search i { color: var(--red); font-size: 14px; }

.faq-search input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 13px 0;
}

.faq-search input:focus { outline: none; }

.faq-search button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
  cursor: pointer;
  padding: 6px 2px;
}

.faq-search button:hover { text-decoration: underline; }

.faq-count {
  margin: 14px 0 0;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --- FAQ: liste --- */

.faq { padding: 46px 0 64px; }

.faq-layout { display: grid; grid-template-columns: 250px 1fr; gap: 56px; align-items: start; }

.faq-side { position: sticky; top: 92px; }

.faq-side nav { display: flex; flex-direction: column; }

.faq-side nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  transition: padding-left 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-side nav a em {
  font-style: normal;
  font-size: 12px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 2px 8px;
}

.faq-side nav a:hover { padding-left: 6px; color: var(--red); }

.faq-side nav a.active {
  color: var(--red);
  font-weight: 600;
  border-color: var(--red);
}

.faq-side nav a.active em { border-color: var(--red); color: var(--red); }

.faq-side-help { margin-top: 30px; }

.faq-side-help p {
  margin: 0 0 12px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 19px;
}

.faq-side-help .btn-line { padding: 11px 20px; font-size: 14px; }

.faq-group { margin-bottom: 46px; }

.faq-group-title {
  font-size: 13px;
  font-family: 'Archivo', Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 42px 1fr 26px;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  transition: color 0.2s ease;
}

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

.faq-item summary b {
  font-family: 'Archivo', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
}

.faq-item summary > span {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 23px;
  line-height: 1.28;
  text-wrap: pretty;
}

.faq-item summary i {
  justify-self: end;
  font-size: 13px;
  color: var(--red);
  transition: transform 0.25s ease;
}

.faq-item summary:hover { color: var(--red); }
.faq-item[open] summary { color: var(--red); }
.faq-item[open] summary i { transform: rotate(180deg); }

.faq-answer {
  padding: 0 34px 24px 52px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  animation: faqIn 0.3s ease;
}

@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq-answer p { margin: 0 0 10px; }
.faq-answer ul, .faq-answer ol { margin: 0; padding-left: 22px; }
.faq-answer li { padding: 3px 0; }

/* --- Info (for utleiere) --- */

.info { padding: 46px 0 10px; }

.info-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 46px 0 46px; margin-top: 30px; }

.info-intro {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46em;
  margin: 0 0 28px;
  text-wrap: pretty;
}

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding-bottom: 30px; }

.info-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 18px 34px -22px rgba(176, 47, 29, 0.45); }

.info-card i { color: var(--red); font-size: 17px; }

.info-card h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin: 12px 0 8px;
}

.info-card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }

.info-two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }

.info-user { border-top: 2px solid var(--ink); padding-top: 16px; }

.info-user h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 8px;
}

.info-user p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }

/* --- Abonnement --- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 40px; }

.plan {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 28px 26px;
}

.plan-featured { border: 2px solid var(--red); box-shadow: 0 22px 44px -26px rgba(176, 47, 29, 0.5); }

.plan-pri {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.plan h3 {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  margin: 4px 0 0;
}

.plan-price {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.plan p { margin: 0 0 20px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

.plan .btn-solid, .plan .btn-line { margin-top: auto; text-align: center; padding: 13px 20px; font-size: 14.5px; }

/* --- Vilk&aring;r / personvern --- */

.legal { padding: 46px 0 64px; }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }

.legal-side { position: sticky; top: 92px; }

.legal-side nav { display: flex; flex-direction: column; }

.legal-side nav a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.35;
  transition: padding-left 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.legal-side nav a em {
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  flex: 0 0 16px;
}

.legal-side nav a:hover { padding-left: 6px; color: var(--red); }

.legal-side nav a.active { color: var(--red); font-weight: 600; border-color: var(--red); }
.legal-side nav a.active em { color: var(--red); }

.legal-main { max-width: 42em; }

.legal-sec { padding-bottom: 34px; scroll-margin-top: 92px; }

.legal-sec h2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.legal-num {
  font-family: 'Archivo', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red);
}

.legal-sec p { margin: 0 0 12px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }

.legal-sec ul { margin: 0 0 14px; padding-left: 22px; }
.legal-sec li { font-size: 16px; line-height: 1.65; color: var(--ink-soft); padding: 4px 0; }

.legal-sec a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.legal-dl {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 0;
  margin: 0 0 16px;
  border-top: 1px solid var(--line);
}

.legal-dl dt {
  font-weight: 600;
  font-size: 15px;
  padding: 13px 16px 13px 0;
  border-bottom: 1px solid var(--line);
}

.legal-dl dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

/* --- Footer --- */

.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
  font-size: 14px;
}

.footer .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }

.footer h3 {
  font-family: 'Archivo', Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.footer ul { margin: 0; padding: 0; }
.footer li { list-style: none; padding: 4px 0; line-height: 1.5; }

.footer .copy {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* --- Cookie-banner --- */

.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--paper);
  border-top: 3px solid var(--red);
  box-shadow: 0 -20px 40px -28px rgba(0, 0, 0, 0.6);
  transform: translateY(102%);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.cookiebar.shown { transform: none; }

.cookiebar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 28px;
}

.cookiebar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(247, 244, 239, 0.85);
  max-width: 60em;
}

.cookiebar p a { color: #F0B9AC; text-decoration: underline; }

.cookiebar-actions { display: flex; gap: 12px; flex: 0 0 auto; }

.cookiebar .btn-solid, .cookiebar .btn-outline { padding: 12px 22px; font-size: 14.5px; }

/* --- Scroll reveal --- */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed { opacity: 1; transform: none; }

/* --- showError / showInfo --- */

.msgbox {
  position: fixed;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 50px);
  max-width: 500px;
  min-height: 100px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  box-shadow: 0 26px 60px -22px rgba(42, 38, 34, 0.55);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.msgbox.msg-error { bottom: 28px; transform: translateY(14px); }

.msgbox.msg-info {
  top: 50%;
  transform: translateY(-50%) scale(0.97);
  border-left-color: var(--ink);
}

.msgbox.shown { opacity: 1; }
.msgbox.msg-error.shown { transform: none; }
.msgbox.msg-info.shown { transform: translateY(-50%) scale(1); }

.msgbox .msg-body { display: flex; align-items: center; gap: 18px; }

.msgbox .msg-icon {
  flex: 0 0 auto;
  font-size: 50px;
  line-height: 50px;
  height: 50px;
  color: var(--red);
}

.msgbox.msg-info .msg-icon { color: var(--ink); }

.msgbox .msg-text { font-size: 16px; line-height: 1.45; }

.msgbox .msg-close {
  align-self: stretch;
  border: 1px solid var(--line);
  background: transparent;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.msgbox .msg-close:hover { background: var(--ink); color: var(--paper); }

/* --- Responsivt --- */

@media (max-width: 1080px) {
  .topnav { display: none; }
}

@media (max-width: 900px) {
  .band .wrap, .cols .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero-inner h1 { font-size: 40px; }
  .hero-inner { padding: 90px 0 34px; }
  .hero-media { min-height: 78vh; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .cookiebar .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faqtop h1 { font-size: 38px; }
  .faq-layout, .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-side, .legal-side { position: static; }
  .legal-sec h2 { font-size: 24px; }
  .legal-dl { grid-template-columns: 1fr; }
  .legal-dl dt { border-bottom: none; padding-bottom: 0; }
  .legal-dl dd { padding-top: 4px; }
  .faq-item summary > span { font-size: 19px; }
  .faq-item summary { grid-template-columns: 32px 1fr 22px; }
  .faq-answer { padding: 0 0 22px 42px; }
  .masthead h2 { font-size: 32px; }
  .cats-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .cats-head h2 { font-size: 32px; }
  .cats-head p a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.cat-feature { grid-template-columns: 1fr 1fr; }
  .cat-groups { grid-template-columns: 1fr; gap: 28px; }
  .info-grid, .info-two, .plans { grid-template-columns: 1fr; gap: 16px; }
  .photo img { height: 260px; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .band a.btn-line { justify-self: start; }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .btn-cta { padding: 11px 14px; }
  .btn-cta span { display: none; }
  .two { grid-template-columns: 1fr; }
  .cats-head p a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }

.cat-feature { grid-template-columns: 1fr; }
  .cat-card { min-height: 0; }
  .photo img { height: 220px; }
  .footer .wrap { grid-template-columns: 1fr; }
}
