/*
Theme Name: Haralds Mattor
Theme URI: https://haraldsmattor.se
Author: Haralds Mattor
Description: Skräddarsytt tema för Haralds Mattor – mattbutik i Nybro. One-pager med sortiment, tjänster, nyheter & kampanjer (publiceras från wp-admin), om oss och kontakt. Byggt utifrån Claude Design-handoff.
Version: 1.6.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: haralds-mattor
*/

/* =====================================================================
   DESIGN TOKENS
   ===================================================================== */
:root{
  --brand:        #A01828;  /* brand-röd, primär */
  --brand-dark:   #7E1220;  /* hover */
  --gold:         #B58A3E;  /* guld/accent */
  --gold-light:   #C9A24B;  /* dekor-ramar */
  --bg:           #F4EEE4;  /* varm créme bakgrund */
  --surface:      #FBF7F0;  /* kort, ljusa ytor */
  --ink:          #2A2320;  /* primär text */
  --body:         #4A4038;  /* brödtext mörk */
  --muted:        #6B5F54;  /* dämpad text */
  --label:        #9A8C7B;  /* etikett-grå */
  --line:         #E5DBCB;  /* linje / ram */
  --line-soft:    #C9BCA8;  /* mjuk linje (knapp-outline) */
  --dark:         #241E1A;  /* mörk sektion / footer */
  --on-dark:      #C8BCAE;  /* text på mörk bakgrund */
  --on-dark-head: #FBF7F0;  /* rubrik på mörk bakgrund */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);
  --pad-y: clamp(56px, 8vw, 104px);
  --gap:   clamp(16px, 2vw, 28px);
}

/* =====================================================================
   BAS
   ===================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--sans);
  color:var(--ink);
  background:var(--bg);
  width:100%;
  overflow-x:hidden;
  line-height:1.6;
}
img{ max-width:100%; height:auto; }
a{ color:var(--brand); }
::selection{ background:var(--brand); color:var(--surface); }

.hm-container{ max-width:var(--container); margin:0 auto; padding-left:var(--pad-x); padding-right:var(--pad-x); }
.hm-section{ padding-top:var(--pad-y); padding-bottom:var(--pad-y); scroll-margin-top:88px; }

/* Eyebrow / etiketter */
.hm-eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:0.22em;
  font-size:12px;
  font-weight:600;
  color:var(--gold);
}
.hm-eyebrow--line{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.hm-eyebrow--line span:first-child{ width:34px; height:1px; background:var(--gold); display:block; }

/* Rubriker */
.hm-h2{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); line-height:1.05; margin:10px 0 0; }

/* Knappar */
.hm-btn{
  display:inline-block; text-decoration:none; font-weight:600; font-size:16px;
  padding:15px 28px; border-radius:2px; border:1px solid transparent; cursor:pointer;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.hm-btn--primary{ background:var(--brand); color:var(--surface); }
.hm-btn--primary:hover{ background:var(--brand-dark); }
.hm-btn--outline{ background:transparent; color:var(--ink); border-color:var(--line-soft); padding:14px 26px; }
.hm-btn--outline:hover{ border-color:var(--ink); }
.hm-btn--sm{ font-size:15px; padding:13px 24px; }

/* Bild-platshållare (visas tills riktiga foton lagts in) */
.hm-media{ display:block; width:100%; background:var(--line); object-fit:cover; }
.hm-fill{ width:100%; height:100%; object-fit:cover; }
.hm-placeholder.hm-fill{ height:100%; }
.hm-placeholder{
  display:flex; align-items:center; justify-content:center; text-align:center;
  width:100%;
  background-image:repeating-linear-gradient(45deg,#F0E7D8 0,#F0E7D8 11px,#F4EEE4 11px,#F4EEE4 22px);
  color:var(--label);
  font-size:13px; font-family:ui-monospace,Menlo,monospace;
}
.hm-placeholder span{ background:var(--surface); padding:8px 14px; border:1px solid var(--line); border-radius:2px; }
.hm-rounded{ border-radius:3px; overflow:hidden; }

/* =====================================================================
   HEADER (sticky)
   ===================================================================== */
.hm-header{
  position:sticky; top:0; z-index:50;
  background:rgba(251,247,240,0.92);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
.hm-header__inner{
  max-width:var(--container); margin:0 auto; padding:14px var(--pad-x);
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.hm-logo{ display:flex; align-items:center; flex-shrink:0; }
.hm-logo img{ height:42px; width:auto; display:block; }
.hm-nav{ display:flex; align-items:center; gap:clamp(14px,2.4vw,32px); flex-wrap:wrap; justify-content:flex-end; }
.hm-nav a{ text-decoration:none; color:var(--ink); font-weight:500; font-size:15px; letter-spacing:0.01em; transition:color .18s ease; }
.hm-nav a:hover{ color:var(--brand); }
.hm-nav__phone{
  background:var(--brand); color:var(--surface); font-weight:600; font-size:14px;
  padding:10px 18px; border-radius:2px; white-space:nowrap;
}
.hm-nav__phone:hover{ background:var(--brand-dark); color:var(--surface); }

/* =====================================================================
   HERO
   ===================================================================== */
.hm-hero{
  max-width:var(--container); margin:0 auto;
  padding:clamp(40px,7vw,84px) var(--pad-x) clamp(32px,5vw,56px);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(32px,5vw,72px); align-items:center;
}
.hm-hero h1{
  font-family:var(--serif); font-weight:600; font-size:clamp(40px,5.6vw,68px);
  line-height:1.02; letter-spacing:-0.01em; margin:0 0 22px;
}
.hm-hero h1 em{ font-style:italic; color:var(--brand); }
.hm-hero p{ font-size:clamp(16px,1.6vw,19px); line-height:1.6; color:var(--muted); max-width:30em; margin:0 0 32px; }
.hm-hero__cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hm-hero__media{ position:relative; }
.hm-hero__frame{ position:absolute; inset:18px -18px -18px 18px; border:1px solid var(--gold-light); border-radius:3px; z-index:0; }
.hm-hero__img{
  position:relative; z-index:1; width:100%; height:clamp(320px,42vw,500px);
  box-shadow:0 24px 60px rgba(42,35,32,0.16);
}

/* =====================================================================
   VALUE STRIP
   ===================================================================== */
.hm-values{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--surface); }
.hm-values__grid{ max-width:var(--container); margin:0 auto; padding:0 var(--pad-x); display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); }
.hm-value{ padding:22px 20px; display:flex; align-items:center; gap:12px; border-left:1px solid var(--line); }
.hm-value__dot{ width:7px; height:7px; background:var(--brand); border-radius:50%; flex-shrink:0; }
.hm-value span:last-child{ font-size:15px; font-weight:600; color:var(--ink); }

/* =====================================================================
   SEKTIONS-HUVUD (rubrik + ingress sida vid sida)
   ===================================================================== */
.hm-sec-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; flex-wrap:wrap; margin-bottom:clamp(28px,4vw,48px); }
.hm-sec-head p{ font-size:16px; line-height:1.6; color:var(--muted); max-width:30em; margin:0; }

/* =====================================================================
   SORTIMENT
   ===================================================================== */
.hm-cards-3{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:var(--gap); }
.hm-card{
  display:flex; flex-direction:column; text-decoration:none; color:inherit;
  background:var(--surface); border:1px solid var(--line); border-radius:4px; overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}
.hm-card__shop{ display:inline-block; margin-top:12px; font-size:14px; font-weight:600; color:var(--brand); }
.hm-card:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(42,35,32,0.12); }
.hm-card__img{ height:240px; }
.hm-card__body{ padding:20px 22px 24px; }
.hm-card__body h3{ font-family:var(--serif); font-weight:600; font-size:26px; margin:0 0 6px; }
.hm-card__body p{ font-size:14.5px; line-height:1.55; color:var(--muted); margin:0; }

.hm-cats{ margin-top:clamp(48px,6vw,80px); padding-top:clamp(36px,4vw,52px); border-top:1px solid var(--line); }
.hm-cats--solo{ margin-top:0; padding-top:0; border-top:0; } /* när kategorilistan står som egen sektion */
.hm-cats h3{ font-family:var(--serif); font-weight:600; font-size:clamp(26px,3vw,36px); line-height:1.1; margin:0 0 clamp(20px,3vw,32px); }
.hm-cats__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); column-gap:clamp(28px,4vw,64px); }
.hm-cat{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 2px; border-bottom:1px solid var(--line); text-decoration:none;
  color:var(--ink); font-size:16px; font-weight:500; transition:color .18s ease;
}
.hm-cat:hover{ color:var(--brand); }
.hm-cat__chev{ color:var(--gold); font-size:15px; flex-shrink:0; }

/* =====================================================================
   TJÄNSTER (mörk sektion)
   ===================================================================== */
.hm-services{ background:var(--dark); color:var(--bg); scroll-margin-top:88px; }
.hm-services__inner{ max-width:var(--container); margin:0 auto; padding:var(--pad-y) var(--pad-x); }
.hm-services__head{ max-width:34em; margin-bottom:clamp(32px,4vw,56px); }
.hm-services__head .hm-eyebrow{ color:var(--gold-light); }
.hm-services__head h2{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); line-height:1.05; margin:10px 0 16px; color:var(--on-dark-head); }
.hm-services__head p{ font-size:17px; line-height:1.6; color:var(--on-dark); margin:0; }
.hm-services__grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1px;
  background:rgba(255,255,255,0.12); border:1px solid rgba(255,255,255,0.12);
  border-radius:4px; overflow:hidden;
}
.hm-service__more{ display:inline-block; margin-top:16px; text-decoration:none; color:var(--gold-light); font-weight:600; font-size:14px; transition:color .18s ease; }
.hm-service__more:hover{ color:var(--on-dark-head); }
.hm-service{ background:var(--dark); padding:clamp(26px,3vw,40px); }
.hm-service__no{ font-family:var(--serif); font-size:22px; color:var(--gold-light); margin-bottom:14px; }
.hm-service h3{ font-family:var(--serif); font-weight:600; font-size:30px; margin:0 0 10px; color:var(--on-dark-head); }
.hm-service p{ font-size:15.5px; line-height:1.6; color:var(--on-dark); margin:0; max-width:34em; }

/* =====================================================================
   AKTUELLT (kampanj + inlägg)
   ===================================================================== */
.hm-campaign{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:0;
  background:var(--surface); border:1px solid var(--line); border-radius:4px;
  overflow:hidden; margin-bottom:clamp(20px,3vw,32px);
}
.hm-campaign__img{ height:100%; min-height:300px; }
.hm-campaign__body{ padding:clamp(28px,4vw,52px); display:flex; flex-direction:column; justify-content:center; }
.hm-tag-red{
  align-self:flex-start; background:var(--brand); color:var(--surface);
  text-transform:uppercase; letter-spacing:0.12em; font-size:11px; font-weight:700;
  padding:6px 12px; border-radius:2px; margin-bottom:18px;
}
.hm-campaign__body h3{ font-family:var(--serif); font-weight:600; font-size:clamp(28px,3.4vw,40px); line-height:1.1; margin:0 0 14px; }
.hm-campaign__body p{ font-size:16px; line-height:1.65; color:var(--body); margin:0 0 24px; max-width:34em; }

.hm-posts{ display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:var(--gap); }
.hm-post{
  text-decoration:none; color:inherit; background:var(--surface);
  border:1px solid var(--line); border-radius:4px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .25s ease, box-shadow .25s ease;
}
.hm-post:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(42,35,32,0.12); }
.hm-post__img{ height:200px; }
.hm-post__body{ padding:20px 22px 24px; }
.hm-post__meta{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.hm-post__tag{ text-transform:uppercase; letter-spacing:0.12em; font-size:11px; font-weight:700; color:var(--brand); }
.hm-post__pin{ display:inline-flex; align-items:center; gap:5px; text-transform:uppercase; letter-spacing:0.12em; font-size:11px; font-weight:700; color:var(--gold); }
.hm-post__pin svg{ flex-shrink:0; }
.hm-post__sep{ width:4px; height:4px; background:var(--line-soft); border-radius:50%; }
.hm-post__date{ font-size:12.5px; color:var(--label); }
.hm-post__body h3{ font-family:var(--serif); font-weight:600; font-size:23px; line-height:1.15; margin:0 0 8px; }
.hm-post__body p{ font-size:14.5px; line-height:1.55; color:var(--muted); margin:0 0 14px; }
.hm-post__more{ font-size:14px; font-weight:600; color:var(--brand); }

/* =====================================================================
   OM OSS
   ===================================================================== */
.hm-about{
  max-width:var(--container); margin:0 auto; padding:var(--pad-y) var(--pad-x);
  display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(32px,5vw,72px); align-items:center;
  scroll-margin-top:88px;
}
.hm-about__img{ width:100%; height:clamp(340px,40vw,480px); box-shadow:0 20px 50px rgba(42,35,32,0.16); }
.hm-about h2{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); line-height:1.05; margin:10px 0 22px; }
.hm-about p{ font-size:17px; line-height:1.7; color:var(--body); margin:0 0 18px; }
.hm-about blockquote{
  font-family:var(--serif); font-style:italic; font-size:clamp(22px,2.6vw,30px); line-height:1.3;
  color:var(--brand); margin:10px 0 0; padding-left:22px; border-left:3px solid var(--gold-light);
}

/* =====================================================================
   KONTAKT
   ===================================================================== */
.hm-contact{ background:var(--surface); border-top:1px solid var(--line); scroll-margin-top:88px; }
.hm-contact__grid{ max-width:var(--container); margin:0 auto; padding:var(--pad-y) var(--pad-x); display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:clamp(32px,5vw,64px); }
.hm-contact h2{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); line-height:1.05; margin:10px 0 28px; }
.hm-contact__list{ display:flex; flex-direction:column; gap:20px; }
.hm-contact__label{ text-transform:uppercase; letter-spacing:0.14em; font-size:11px; font-weight:700; color:var(--label); margin-bottom:5px; }
.hm-contact__val{ font-size:17px; color:var(--ink); line-height:1.5; }
.hm-contact a{ color:var(--brand); text-decoration:none; font-weight:600; font-size:17px; }
.hm-hours{ border-collapse:collapse; font-size:16px; color:var(--ink); }
.hm-hours td{ padding:3px 28px 3px 0; }
.hm-hours td:last-child{ padding-right:0; }
.hm-hours .is-closed{ color:var(--label); }
.hm-notice{ background:#FBEDE9; border:1px solid #E9C9BF; border-left:3px solid var(--brand); border-radius:4px; padding:16px 18px; }
.hm-notice__head{ display:flex; align-items:center; gap:8px; margin-bottom:10px; }
.hm-notice__label{ text-transform:uppercase; letter-spacing:0.14em; font-size:11px; font-weight:700; color:var(--brand); }
.hm-notice__rows{ display:flex; flex-direction:column; gap:7px; }
.hm-notice__row{ display:flex; justify-content:space-between; gap:16px; font-size:15px; color:var(--ink); }
.hm-notice__when{ font-weight:500; }
.hm-notice__status{ color:var(--brand-dark); font-weight:600; text-align:right; white-space:nowrap; }
.hm-map{ border:1px solid var(--line); border-radius:4px; min-height:340px; overflow:hidden; }
.hm-map iframe{ display:block; width:100%; height:100%; min-height:340px; border:0; }
.hm-map .hm-placeholder{ height:100%; min-height:340px; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.hm-footer{ background:var(--dark); color:var(--on-dark); }
.hm-footer__inner{ max-width:var(--container); margin:0 auto; padding:clamp(40px,5vw,64px) var(--pad-x); display:flex; align-items:flex-start; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.hm-footer__brand{ max-width:24em; }
.hm-footer__logo{ background:var(--surface); display:inline-block; padding:12px 16px; border-radius:3px; }
.hm-footer__logo img{ height:34px; width:auto; display:block; }
.hm-footer__brand p{ font-size:14.5px; line-height:1.6; margin:18px 0 0; color:#9C9082; }
.hm-footer__cols{ display:flex; gap:clamp(32px,5vw,72px); flex-wrap:wrap; }
.hm-footer__col{ display:flex; flex-direction:column; gap:10px; }
.hm-footer__col-title{ text-transform:uppercase; letter-spacing:0.14em; font-size:11px; font-weight:700; color:#6E6358; }
.hm-footer__col a{ color:var(--on-dark); text-decoration:none; font-size:15px; transition:color .18s ease; }
.hm-footer__col a:hover{ color:var(--on-dark-head); }
.hm-footer__col span{ color:#9C9082; font-size:15px; }
.hm-footer__bottom{ border-top:1px solid rgba(255,255,255,0.1); }
.hm-footer__bottom div{ max-width:var(--container); margin:0 auto; padding:18px var(--pad-x); font-size:13px; color:#6E6358; }

/* =====================================================================
   VINYLGOLV-BANNER (i Sortiment på startsidan)
   ===================================================================== */
.hm-vinylbanner{
  margin-top:clamp(20px,2.6vw,32px); display:flex; align-items:center; justify-content:space-between;
  gap:28px; flex-wrap:wrap; text-decoration:none; color:inherit; background:var(--dark);
  border-radius:4px; padding:clamp(26px,3.4vw,44px) clamp(26px,4vw,52px);
  transition:transform .25s ease, box-shadow .25s ease;
}
.hm-vinylbanner:hover{ transform:translateY(-4px); box-shadow:0 18px 40px rgba(42,35,32,0.2); }
.hm-vinylbanner__text{ min-width:min(100%,260px); }
.hm-vinylbanner__eyebrow{ text-transform:uppercase; letter-spacing:0.22em; font-size:11px; font-weight:700; color:var(--gold-light); }
.hm-vinylbanner h3{ font-family:var(--serif); font-weight:600; font-size:clamp(26px,3vw,38px); line-height:1.08; margin:8px 0; color:var(--on-dark-head); }
.hm-vinylbanner p{ font-size:15.5px; line-height:1.55; color:var(--on-dark); margin:0; max-width:44em; }
.hm-vinylbanner__cta{ flex-shrink:0; display:inline-flex; align-items:center; gap:10px; background:var(--brand); color:var(--surface); font-weight:600; font-size:15px; padding:14px 24px; border-radius:2px; white-space:nowrap; }
.hm-vinylbanner__cta span{ font-size:17px; }

/* =====================================================================
   VINYLGOLV-SIDA (egen sida)
   ===================================================================== */
.hm-crumbwrap{ max-width:var(--container); margin:0 auto; padding:clamp(20px,3vw,32px) var(--pad-x) 0; }
.hm-crumb{ display:inline-flex; align-items:center; gap:8px; text-decoration:none; color:var(--muted); font-size:14.5px; font-weight:500; transition:color .18s ease; }
.hm-crumb:hover{ color:var(--brand); }
.hm-crumb span{ font-size:16px; }

.hm-vinyl{ max-width:var(--container); margin:0 auto; padding:clamp(32px,5vw,56px) var(--pad-x) clamp(56px,8vw,104px); }
.hm-vinyl__intro{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:clamp(28px,4vw,64px); align-items:center; margin-bottom:clamp(40px,5vw,64px); }
.hm-vinyl__h1{ font-family:var(--serif); font-weight:600; font-size:clamp(38px,5vw,60px); line-height:1.03; letter-spacing:-0.01em; margin:0 0 20px; }
.hm-vinyl__h1 em{ font-style:italic; color:var(--brand); }
.hm-vinyl__intro p{ font-size:clamp(16px,1.6vw,18px); line-height:1.65; margin:0 0 16px; max-width:34em; }
.hm-vinyl__intro p.body{ color:var(--body); }
.hm-vinyl__intro p.muted{ color:var(--muted); margin-bottom:0; }
.hm-vinyl__intro p.hm-vinyl__wet{ color:var(--brand-dark); font-weight:600; font-size:14.5px; line-height:1.55; margin:16px 0 0; }

.hm-promise{ background:var(--dark); border-radius:4px; padding:clamp(26px,3vw,38px); display:flex; flex-direction:column; gap:20px; }
.hm-promise__item{ display:flex; align-items:flex-start; gap:14px; }
.hm-promise__dot{ width:9px; height:9px; background:var(--gold-light); border-radius:50%; flex-shrink:0; margin-top:7px; }
.hm-promise__title{ font-family:var(--serif); font-weight:600; font-size:22px; color:var(--on-dark-head); line-height:1.2; }
.hm-promise__desc{ font-size:14.5px; line-height:1.5; color:var(--on-dark); margin-top:3px; }

.hm-vinyl__h2{ font-family:var(--serif); font-weight:600; font-size:clamp(26px,3.2vw,40px); line-height:1.08; margin:0 0 clamp(18px,2.5vw,28px); }
.hm-vinyl__grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:clamp(16px,2vw,24px); }
.hm-floor{ display:flex; flex-direction:column; background:#FFFFFF; border:1px solid var(--line); border-radius:4px; overflow:hidden; }
.hm-floor__img{ height:180px; }
.hm-floor__body{ padding:20px 22px 22px; display:flex; flex-direction:column; flex:1; }
.hm-floor__name{ font-family:var(--serif); font-weight:600; font-size:24px; margin:0 0 8px; }
.hm-floor__desc{ font-size:14px; line-height:1.55; color:var(--muted); margin:0 0 18px; flex:1; }
.hm-floor__prices{ border-top:1px solid var(--line); padding-top:14px; display:flex; flex-direction:column; gap:8px; }
.hm-floor__row{ display:flex; justify-content:space-between; align-items:baseline; gap:12px; }
.hm-floor__mlabel{ font-size:13px; color:var(--label); }
.hm-floor__mval{ font-size:15px; font-weight:600; color:var(--ink); }
.hm-floor__llabel{ font-size:13px; color:var(--brand); font-weight:700; text-transform:uppercase; letter-spacing:0.06em; }
.hm-floor__lval{ font-family:var(--serif); font-size:24px; font-weight:700; color:var(--brand); }
.hm-vinyl__note{ font-size:13.5px; line-height:1.6; color:var(--label); margin:16px 0 0; max-width:52em; }

.hm-cta{ margin-top:clamp(32px,4vw,52px); display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; background:var(--surface); border:1px solid var(--line); border-radius:4px; padding:clamp(24px,3vw,36px) clamp(24px,4vw,44px); }
.hm-cta h2{ font-family:var(--serif); font-weight:600; font-size:clamp(22px,2.6vw,30px); line-height:1.15; margin:0 0 6px; }
.hm-cta p{ font-size:15.5px; line-height:1.55; color:var(--muted); margin:0; max-width:40em; }
.hm-cta__btns{ display:flex; gap:12px; flex-wrap:wrap; }

/* =====================================================================
   INNEHÅLLSSIDOR (enskilt inlägg / sida / arkiv)
   ===================================================================== */
.hm-article{ max-width:760px; margin:0 auto; padding:clamp(48px,7vw,88px) var(--pad-x); }
.hm-article__back{ display:inline-block; margin-bottom:24px; font-size:14px; font-weight:600; color:var(--brand); text-decoration:none; }
.hm-article h1{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); line-height:1.08; margin:8px 0 16px; }
.hm-article__meta{ display:flex; align-items:center; gap:10px; margin-bottom:28px; }
.hm-article__cover{ width:100%; border-radius:4px; margin:0 0 32px; }
.hm-article__content{ font-size:18px; line-height:1.75; color:var(--body); }
.hm-article__content h2,.hm-article__content h3{ font-family:var(--serif); color:var(--ink); }
.hm-article__content img{ border-radius:4px; }
.hm-article__content a{ color:var(--brand); }
.hm-archive{ max-width:var(--container); margin:0 auto; padding:clamp(48px,7vw,88px) var(--pad-x); }
.hm-archive h1{ font-family:var(--serif); font-weight:600; font-size:clamp(32px,4.4vw,52px); margin:0 0 clamp(28px,4vw,48px); }

/* =====================================================================
   RESPONSIVT
   Rutnäten är flexibla (auto-fit/minmax) och viker ner sig av sig själva.
   Här finns bara småjusteringar för smala skärmar.
   ===================================================================== */
@media (max-width:760px){
  .hm-campaign__img{ min-height:220px; }
  .hm-nav{ gap:14px; }
}
@media (max-width:560px){
  .hm-nav__phone{ order:-1; }
}
