/* EP Ventilation AB — webbplats 2026
   Profil hämtad från befintliga epventilation.se: grönt, ljust, rundade kort. */

:root {
  color-scheme: light;

  --green:       #4A7A2C;
  --green-dark:  #3B6323;
  --green-deep:  #2C4F1D;
  --green-soft:  #E9F2DF;
  --green-tint:  #F5F9F0;

  --ink:         #1A2015;
  --ink-soft:    #3F4A36;
  --muted:       #6B7A72;
  --line:        #E4E9DD;
  --line-soft:   #F0F4EA;
  --paper:       #F7FAF3;
  --surface:     #FFFFFF;
  --amber:       #E0A22B;
  --amber-soft:  #FDF4E3;

  --font: "Figtree", "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --shadow: 0 14px 34px -26px rgba(28, 45, 15, .45);
  --shadow-lg: 0 26px 60px -34px rgba(28, 45, 15, .5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

img { max-width: 100%; display: block; }
a { color: var(--green-dark); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: clamp(2.15rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.22rem; letter-spacing: -0.015em; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 1.1rem; color: var(--ink-soft); }
.prose strong { color: var(--ink); }

/* ---------- knappar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .97rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: #CFE0BC; }
.btn-outline:hover { border-color: var(--green); background: var(--green-soft); }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--green-soft); }
.btn-lg { padding: 1rem 2rem; font-size: 1.03rem; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

/* ---------- header ---------- */
.topbar { background: var(--green-deep); color: #D6E7C5; font-size: .82rem; }
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .3rem 1.6rem; justify-content: space-between; padding-block: .55rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }
@media (max-width: 700px) { .topbar .wrap span:last-child { display: none; } }

.site-head { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.head-inner { display: flex; align-items: center; gap: 1.5rem; padding-block: .8rem; }

.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.logo-mark { width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); display: grid; place-items: center; flex: none; }
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text b { font-size: 1.14rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text span { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.nav a { text-decoration: none; color: var(--ink-soft); font-size: .96rem; font-weight: 600; }
.nav a:hover { color: var(--green); }
.nav a[aria-current="page"] { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
/* Knappen i menyn ska behålla sin egen textfärg – .nav a väger annars tyngre. */
.nav a.btn-primary, .nav a.btn-primary:hover { color: #fff; }
.nav a.btn-outline, .nav a.btn-outline:hover { color: var(--green-dark); }

.burger { display: none; margin-left: auto; background: transparent; border: 1px solid var(--line); border-radius: 10px; padding: .5rem .7rem; cursor: pointer; }
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

@media (max-width: 1100px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--surface); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 20px 1.3rem;
  }
  .nav.open { display: flex; }
  .nav a { padding-block: .85rem; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { flex-direction: column; align-items: stretch; padding-top: 1rem; gap: .6rem; }
  .burger { display: block; }
  .site-head .wrap { position: relative; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--green-deep); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,50,17,.92) 0%, rgba(30,50,17,.78) 45%, rgba(30,50,17,.42) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero-copy { display: flex; flex-direction: column; gap: 1.4rem; max-width: 40rem; }
.hero h1 { color: #fff; }
.hero .lede { color: #DDE9CF; }
.hero .eyebrow { color: #A8D46B; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.trustline { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.trustline li {
  font-size: .82rem; font-weight: 600;
  padding: .42rem .85rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  color: #F0F7E6;
  border-radius: 999px;
}

/* ---------- sidbanner ---------- */
.pagehead { background: var(--green-deep); color: #fff; position: relative; overflow: hidden; }
.pagehead .hero-media::after { background: linear-gradient(100deg, rgba(30,50,17,.94) 0%, rgba(30,50,17,.8) 50%, rgba(30,50,17,.5) 100%); }
.pagehead .wrap { position: relative; z-index: 2; padding-block: clamp(2.6rem, 6vw, 4.2rem); display: flex; flex-direction: column; gap: .9rem; }
.pagehead h1 { color: #fff; max-width: 20ch; }
.pagehead .lede { color: #DDE9CF; }
.pagehead .eyebrow { color: #A8D46B; }
.crumbs { font-size: .84rem; color: #B0CC90; }
.crumbs a { color: #B0CC90; text-decoration: none; }
.crumbs a:hover { color: #fff; }

/* ---------- faktarad ---------- */
.factstrip { display: flex; flex-wrap: wrap; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); margin: 0; }
.factstrip div { flex: 1 1 210px; padding: 1.2rem 1.5rem; border-right: 1px solid var(--line-soft); }
.factstrip div:last-child { border-right: 0; }
.factstrip dt { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: .2rem; }
.factstrip dd { margin: 0; font-weight: 700; font-size: 1.02rem; }

/* ---------- sektioner ---------- */
.section { padding-block: clamp(3.2rem, 7vw, 5.5rem); }
.section-white { background: var(--surface); }
.section-paper { background: var(--paper); }
.section-mint { background: var(--green-tint); }
.section-green { background: var(--green-deep); color: #DCE8CB; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green .eyebrow { color: #A8D46B; }

.section-head { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2.6rem; max-width: 64ch; }
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }

/* ---------- bild + text ---------- */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.media-row + .media-row { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.media-row .shot { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--green-soft); }
.media-row .shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.media-row.flip .shot { order: -1; }
@media (max-width: 900px) {
  .media-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .media-row.flip .shot { order: 0; }
}

/* ---------- tjänstekort ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.service:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #CFE0BC; }
.service img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.service .body { padding: 1.5rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.service p { color: var(--muted); font-size: .97rem; }
.service .from { font-weight: 800; color: var(--green-dark); }
.service .more { margin-top: auto; font-weight: 700; color: var(--green); font-size: .93rem; }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

/* ---------- fördelar ---------- */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.usp > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.usp .badge { width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; margin-bottom: .3rem; }
.usp .badge svg { width: 22px; height: 22px; }
.usp p { color: var(--muted); font-size: .94rem; }
@media (max-width: 900px) { .usp { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .usp { grid-template-columns: 1fr; } }

/* ---------- pris ---------- */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; align-items: stretch; }
.prices.three { grid-template-columns: repeat(3, 1fr); }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.7rem 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  position: relative;
}
.price-card.featured { border: 2px solid var(--green); box-shadow: var(--shadow); }
.price-card .flag {
  position: absolute; top: -13px; left: 1.4rem;
  background: var(--green); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .8rem; border-radius: 999px;
}
.price-card .amount { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--green-deep); font-variant-numeric: tabular-nums; line-height: 1.1; }
.price-card .after { font-size: .85rem; color: var(--muted); font-weight: 600; }
.price-card .checks { margin-top: .2rem; }
.price-card .btn { margin-top: auto; }
@media (max-width: 1000px) { .prices, .prices.three { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .prices, .prices.three { grid-template-columns: 1fr; } }

.pricenote { font-size: .9rem; color: var(--muted); margin-top: 1.4rem; max-width: 80ch; }

/* ---------- listor ---------- */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.checks li { position: relative; padding-left: 1.85rem; color: var(--ink-soft); font-size: .97rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 11px; height: 6px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.section-green .checks li { color: #D2E2BE; }
.section-green .checks li::before { border-color: #A8D46B; }
.two-col { columns: 2; column-gap: 2.5rem; }
.two-col li { break-inside: avoid; }
@media (max-width: 640px) { .two-col { columns: 1; } }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; display: flex; flex-direction: column; gap: 1rem; }
.panel-mint { background: var(--green-soft); border-color: #CFE0BC; }
.panel h3 { font-size: 1.08rem; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; padding: 0; margin: 0; }
.steps > li { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.steps .num {
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24);
  color: #fff; font-weight: 800; display: grid; place-items: center; margin-bottom: .3rem;
}
.steps p { font-size: .95rem; color: #C0D5A4; }
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ---------- bildremsa ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.gallery img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--r); box-shadow: var(--shadow); }
@media (max-width: 780px) { .gallery { grid-template-columns: 1fr 1fr; } .gallery img:last-child { display: none; } }

/* ---------- erbjudande ---------- */
.offer {
  background: var(--amber-soft);
  border: 1px solid #F0DFBB;
  border-radius: var(--r);
  padding: 1.8rem;
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  align-items: center; justify-content: space-between;
}
.offer h3 { color: #7A5210; }
.offer p { color: #7A5210; max-width: 56ch; font-size: .97rem; }

/* ---------- områden ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.areas li { border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: .45rem 1rem; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.areas li.primary { background: var(--green); color: #fff; border-color: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 80ch; display: grid; gap: .8rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.3rem;
  font-weight: 700; font-size: 1.03rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%);
  color: var(--green); font-size: 1.4rem; font-weight: 700; line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > p { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); max-width: 70ch; }

/* ---------- offertformulär ---------- */
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; gap: 2rem; } }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: .25rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.3rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: .97rem; color: var(--ink);
  background: var(--surface); border: 1px solid #DCE3D4; border-radius: var(--r-sm);
  padding: .75rem .85rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); }
/* Tjänstväljare i offertformuläret */
.tjanster { display: grid; gap: .8rem; }
.service-row {
  position: relative;
  background: var(--green-tint);
  border: 1px solid #DFE9D2;
  border-radius: 14px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.rowhead { display: flex; align-items: center; gap: .5rem; }
.rowhead .tjanst-select { flex: 1; }
.remove-service {
  flex: none;
  width: 44px; height: 44px; line-height: 1;
  border: 1px solid #D8E3CC; background: #fff; color: var(--muted);
  border-radius: 10px; font-size: 1.25rem; cursor: pointer;
}
.remove-service:hover { color: #8A2C10; border-color: #E6BFB2; }

.optgroup { border: 0; margin: 0; padding: 0; display: grid; gap: .45rem; }
.optgroup legend {
  padding: 0 0 .15rem;
  font-size: .82rem; font-weight: 700; color: var(--ink-soft);
}
.opt {
  display: flex; align-items: center; gap: .65rem;
  background: var(--surface);
  border: 1px solid #DCE3D4;
  border-radius: 10px;
  padding: .6rem .8rem;
  font-size: .95rem;
  cursor: pointer;
}
.opt:hover { border-color: #ADCB8D; }
.opt.selected { border-color: var(--green); background: var(--green-soft); }
.opt .pris { margin-left: auto; font-weight: 700; color: var(--green-dark); font-size: .9rem; font-variant-numeric: tabular-nums; }
input[type="radio"].box {
  appearance: none; -webkit-appearance: none;
  width: 19px; height: 19px; flex: none; margin: 0;
  border: 2px solid #C8D4BC; border-radius: 5px; background: #fff;
  display: grid; place-items: center; cursor: pointer;
}
input[type="radio"].box:checked { background: var(--green); border-color: var(--green); }
input[type="radio"].box:checked::after {
  content: ""; width: 9px; height: 5px;
  border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translate(1px, -2px);
}
.add-service {
  margin-top: .8rem; width: 100%;
  background: transparent; border: 1px dashed #BFD8A8; color: var(--green-dark);
  border-radius: 10px; padding: .75rem 1rem;
  font-family: var(--font); font-size: .93rem; font-weight: 700; cursor: pointer;
}
.add-service::before { content: "+ "; }
.add-service:hover { background: var(--green-soft); border-color: var(--green); }

.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .86rem; color: var(--muted); grid-column: 1 / -1; }
.consent input { width: 17px; height: 17px; margin-top: .3rem; flex: none; accent-color: var(--green); }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .9rem; text-align: center; }
.form-status { font-size: .93rem; margin-top: .9rem; padding: .85rem 1rem; border-radius: var(--r-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--green-soft); color: var(--green-deep); }
.form-status.err { background: #FCEAE5; color: #8A2C10; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

.contact-card { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); color: var(--green-dark); display: grid; place-items: center; flex: none; }
.contact-item .ico svg { width: 21px; height: 21px; }
.contact-item dt { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.contact-item dd { margin: 0; font-size: 1.12rem; font-weight: 700; }
.contact-item dd a { color: var(--green-dark); text-decoration: none; }
.contact-item dd a:hover { text-decoration: underline; }
.contact-item .sub { font-size: .9rem; color: var(--muted); font-weight: 400; }

/* ---------- CTA-band ---------- */
.cta-band { background: var(--green); color: #fff; }
.cta-band .wrap { padding-block: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: space-between; }
.cta-band h2 { font-size: 1.6rem; color: #fff; max-width: 26ch; }
.cta-band p { color: #E4F0D4; font-size: .98rem; max-width: 50ch; }

/* ---------- footer ---------- */
.site-foot { background: var(--green-deep); color: #BCCFA6; font-size: .94rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-block: 3.2rem 2rem; }
.site-foot h4 { font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: #93AD7C; margin-bottom: .9rem; }
.site-foot a { color: #E9F2DF; text-decoration: none; }
.site-foot a:hover { color: #fff; text-decoration: underline; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-foot .logo-mark { background: rgba(255,255,255,.12); }
.foot-brand p { color: #A3BB8B; max-width: 34ch; margin-top: 1rem; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-block: 1.2rem 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between;
  font-size: .84rem; color: #93AD7C;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ---------- policy ---------- */
.policy { display: flex; flex-direction: column; gap: 2rem; max-width: 72ch; }
.policy section { display: flex; flex-direction: column; gap: .8rem; }
.policy h2 { font-size: 1.35rem; }
.policy p, .policy li { color: var(--ink-soft); }
.policy ul { margin: 0; padding-left: 1.2rem; display: grid; gap: .45rem; }


/* ---------- logotyp ---------- */
.logo-symbol { height: 46px; width: auto; flex: none; }
@media (max-width: 480px) {
  .logo-symbol { height: 40px; }
  .logo-text b { font-size: 1.05rem; }
  .logo-text > span { display: none; }
}
.foot-symbol { height: 46px; width: auto; flex: none; }

/* ---------- Reco ---------- */
.reco-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow);
}
.reco-band .badge-img { width: 132px; height: auto; flex: none; }
.reco-copy { display: flex; flex-direction: column; gap: .6rem; }
.reco-copy h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.reco-copy p { color: var(--ink-soft); font-size: .98rem; max-width: 60ch; }
.reco-stats { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: .3rem; }
.reco-stats div { display: flex; flex-direction: column; }
.reco-stats dt, .reco-stats .etikett {
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.reco-stats .varde {
  font-size: 1.5rem; font-weight: 800; color: var(--green-deep);
  font-variant-numeric: tabular-nums; line-height: 1.2;
}
.stars { display: inline-flex; gap: .12rem; vertical-align: -2px; }
.stars svg { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .reco-band { grid-template-columns: 1fr; text-align: left; gap: 1.2rem; padding: 1.5rem; }
  .reco-band .badge-img { width: 104px; }
}

.foot-reco { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.foot-reco img { width: 62px; height: auto; }
.foot-reco span { font-size: .86rem; color: #A3BB8B; }


/* ---------- kompakt Reco-rad vid formuläret ---------- */
.reco-rad {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--green-tint);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, background-color .18s ease;
}
.reco-rad:hover { border-color: var(--green); background: var(--green-soft); }
.reco-rad > img { width: 58px; height: auto; flex: none; }
.reco-rad-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.reco-rad-betyg {
  display: flex; align-items: center; gap: .45rem;
  font-size: 1.15rem; font-weight: 800; color: var(--green-deep);
  font-variant-numeric: tabular-nums; line-height: 1.2;
}
.reco-rad-sub { font-size: .84rem; color: var(--muted); }
.reco-rad-pil { margin-left: auto; color: var(--green); font-weight: 700; flex: none; }
@media (max-width: 380px) { .reco-rad-pil { display: none; } }

/* Reco-raden ovanför formuläret på mobil, i kontaktrutan på desktop */
.reco-mobil { display: none; }
@media (max-width: 900px) {
  .reco-mobil { display: block; margin-bottom: 1.4rem; }
  .reco-rad-panel { display: none; }
  .reco-rad-bred { background: var(--surface); }
}

/* ---------- cookieruta ---------- */
.cookieruta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  max-width: 760px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 24px 60px -30px rgba(28, 45, 15, .6);
  padding: 1.2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  align-items: center;
  justify-content: space-between;
}
.cookieruta p { font-size: .93rem; color: var(--ink-soft); flex: 1 1 320px; }
.cookieknappar { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookieknappar .btn { padding: .7rem 1.2rem; font-size: .92rem; }
@media (max-width: 520px) {
  .cookieruta { padding: 1rem; }
  .cookieknappar { width: 100%; }
  .cookieknappar .btn { flex: 1; }
}

.cookie-lank {
  background: none; border: 0; padding: 0;
  font: inherit; color: #E9F2DF; cursor: pointer; text-align: left;
}
.cookie-lank:hover { color: #fff; text-decoration: underline; }
