/* =============================================
   TREREDSKAP.NO – Stylesheet
   Aesthetic: Editorial naturmagasin
   Fonts: DM Serif Display + DM Sans
   Farger: Dyp skoggrønn + varm krem + gull
   ============================================= */

:root {
  --forest: #1A2E1A;
  --forest-mid: #2E4A2E;
  --forest-light: #3D6B3D;
  --cream: #F8F3EC;
  --cream-dark: #EDE5D8;
  --white: #FDFAF6;
  --gold: #C8963C;
  --gold-light: #E5B96A;
  --gold-pale: #F0D9A8;
  --bark: #7A5230;
  --text: #1A1A14;
  --text-muted: #5C5540;
  --border: #DDD3C0;
  --shadow: rgba(26, 46, 26, 0.10);
  --shadow-md: rgba(26, 46, 26, 0.18);
  --radius: 6px;
  --radius-lg: 14px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.15;
  color: var(--forest);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.header-top {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px var(--shadow);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--forest); letter-spacing: -0.02em;
}
.logo em { font-style: italic; color: var(--gold); }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 0.88rem; font-weight: 400; color: var(--text-muted);
  padding: 6px 12px; border-radius: var(--radius); transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); background: var(--cream); }
.nav-cta {
  background: var(--forest) !important; color: #fff !important;
  padding: 8px 16px !important; border-radius: var(--radius) !important;
  font-weight: 500 !important; font-size: 0.85rem !important;
}
.nav-cta:hover { background: var(--forest-mid) !important; }

.hamburger { display: none; background: none; border: none; font-size: 1.4rem; color: var(--forest); cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border); padding: 16px 24px; gap: 4px;
}
.mobile-menu a { padding: 10px 0; font-size: 0.95rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; color: var(--forest); font-weight: 600; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO – Editorial mosaic
   ============================================= */
.hero {
  background: var(--cream);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 88vh; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-content {
  padding: 80px 60px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-eyebrow span { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bark); }
.hero h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  line-height: 1.05; margin-bottom: 24px; color: var(--forest);
}
.hero-lead {
  font-size: 1.05rem; color: var(--text-muted); max-width: 440px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Mosaic image grid */
.hero-mosaic {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 8px; padding: 24px 24px 24px 12px;
}
.mosaic-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-item.large { grid-row: span 2; min-height: 400px; }
.mosaic-col { display: flex; flex-direction: column; gap: 8px; }
.mosaic-col .mosaic-item { flex: 1; min-height: 130px; }
.mosaic-label {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(26,46,26,0.82); color: #fff;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; backdrop-filter: blur(4px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 0.88rem; font-weight: 500; font-family: 'DM Sans', sans-serif;
  transition: all var(--transition); cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,46,26,0.25); }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: #fff; }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-cta { background: var(--gold); color: var(--forest); border-color: var(--gold); font-weight: 600; }
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,150,60,0.3); }
.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-cta { text-align: center; margin-top: 48px; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.categories-section { background: var(--white); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition);
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px var(--shadow-md); border-color: var(--gold-pale); }
.category-img { overflow: hidden; }
.category-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover .category-img img { transform: scale(1.06); }
.category-info { padding: 18px; }
.category-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.category-info p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.55; }
.category-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); }

/* =============================================
   FEATURED SECTION
   ============================================= */
.featured-section { background: var(--cream-dark); }
.featured-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.featured-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px var(--shadow-md); }
.featured-card.primary-card { grid-row: span 3; }
.featured-card.primary-card .featured-img img { height: 360px; }
.featured-card.small-card { flex-direction: row; }
.featured-card.small-card .featured-img { width: 160px; flex-shrink: 0; }
.featured-card.small-card .featured-img img { width: 100%; height: 100%; }
.featured-img { position: relative; overflow: hidden; background: var(--cream); }
.featured-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; }
.featured-card:hover .featured-img img { transform: scale(1.05); }
.featured-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--forest);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
}
.featured-col { display: flex; flex-direction: column; gap: 20px; }
.featured-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.featured-card.small-card .featured-info { padding: 16px; }
.product-type { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.featured-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.featured-card.small-card .featured-info h3 { font-size: 0.95rem; }
.featured-info p { font-size: 0.87rem; color: var(--text-muted); flex: 1; margin-bottom: 12px; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.price-new { font-size: 1.1rem; font-weight: 600; color: var(--forest); font-family: 'DM Serif Display', serif; }
.price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.cta-link { font-size: 0.84rem; font-weight: 600; color: var(--gold); margin-top: auto; }

/* =============================================
   CHOOSE SECTION
   ============================================= */
.choose-section { background: var(--white); }
.choose-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.choose-content h2 { font-size: 2rem; margin-bottom: 16px; }
.choose-content > p { color: var(--text-muted); margin-bottom: 32px; }
.choose-list { display: flex; flex-direction: column; gap: 16px; }
.choose-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: var(--cream);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.choose-icon { font-size: 1.4rem; flex-shrink: 0; }
.choose-item div { font-size: 0.9rem; color: var(--text-muted); }
.choose-item strong { color: var(--forest); display: block; margin-bottom: 2px; }
.choose-item a { color: var(--gold); font-weight: 500; font-size: 0.84rem; }
.choose-image { position: relative; }
.choose-image > img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 20px 48px var(--shadow-md); }
.choose-card-float {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(253,250,246,0.95); border: 1px solid var(--border);
  padding: 14px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(8px); box-shadow: 0 8px 24px var(--shadow);
}
.float-icon { font-size: 1.6rem; }
.choose-card-float strong { display: block; font-size: 0.9rem; color: var(--forest); }
.choose-card-float span { font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   WHY GRID
   ============================================= */
.why-section { background: var(--forest); }
.why-section .section-header h2 { color: #fff; }
.why-section .section-header p { color: rgba(255,255,255,0.65); }
.why-section .section-tag { color: var(--gold-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); overflow: hidden; }
.why-card {
  padding: 32px 28px; background: rgba(26,46,26,0.6);
  transition: background var(--transition);
}
.why-card:hover { background: rgba(46,74,46,0.8); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; display: block; }
.why-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.why-card p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: var(--cream-dark); padding: 64px 0; border-top: 1px solid var(--border); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-text p { color: var(--text-muted); font-size: 1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--forest); color: rgba(255,255,255,0.6); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { color: #fff; margin-bottom: 12px; font-size: 1.3rem; }
.footer-brand .logo em { color: var(--gold-light); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-links h4 { font-family: 'DM Serif Display', serif; color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.5); }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero { background: var(--cream); padding: 72px 0 60px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 24px; }
.guide-toc { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.guide-toc a {
  font-size: 0.8rem; font-weight: 500; color: var(--gold);
  background: rgba(200,150,60,0.1); border: 1px solid rgba(200,150,60,0.25);
  padding: 5px 14px; border-radius: 50px; transition: all var(--transition);
}
.guide-toc a:hover { background: var(--gold); color: #fff; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.product-section-header { display: flex; align-items: baseline; justify-content: space-between; margin: 52px 0 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.product-section-header:first-child { margin-top: 0; }
.product-section-header h2 { font-size: 1.7rem; }
.see-all-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 16px; }
.product-grid.four-col { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px var(--shadow-md); border-color: var(--gold-pale); }
.product-card.large-card { grid-column: span 2; flex-direction: row; }
.product-card.large-card .product-img-wrap { flex: 1; }
.product-card.large-card .product-img-wrap img { height: 100%; min-height: 260px; }
.product-card.large-card .product-info { flex: 1; padding: 32px; }

.product-img-wrap { position: relative; overflow: hidden; background: var(--cream); }
.product-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.badge-sale {
  position: absolute; top: 10px; left: 10px;
  background: var(--gold); color: var(--forest);
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
}
.product-info { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { font-size: 1rem; margin-bottom: 6px; }
.product-info p { font-size: 0.85rem; color: var(--text-muted); flex: 1; margin-bottom: 10px; }

/* =============================================
   GUIDE SECTIONS
   ============================================= */
.guide-main { padding: 60px 0; }
.guide-container { max-width: 1100px; }
.guide-section { padding: 60px 0; border-bottom: 1px solid var(--border); }
.guide-section.full-width { }
.guide-section:last-child { border-bottom: none; }

/* Guide with aside */
.guide-section:not(.full-width) {
  display: grid; grid-template-columns: 1fr 320px; gap: 60px;
}
.guide-text h2 { font-size: 1.9rem; margin-bottom: 20px; }
.guide-text h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--forest-light); }
.guide-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; font-size: 0.95rem; }
.guide-text a { color: var(--gold); text-decoration: underline; }

.styled-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.styled-list li { padding: 8px 0 8px 16px; border-left: 2px solid var(--gold-pale); color: var(--text-muted); font-size: 0.92rem; }
.styled-list li strong { color: var(--forest); }

.aside-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; position: sticky; top: 84px; }
.aside-card img { width: 100%; height: 200px; object-fit: cover; }
.aside-content { padding: 20px; }
.aside-content h4 { font-size: 1rem; margin-bottom: 8px; }
.aside-content p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }

.type-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.type-card { display: flex; gap: 14px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all var(--transition); }
.type-card:hover { box-shadow: 0 6px 20px var(--shadow); transform: translateY(-2px); }
.type-img { width: 120px; flex-shrink: 0; overflow: hidden; }
.type-img img { width: 100%; height: 100%; object-fit: cover; }
.type-info { padding: 16px 16px 16px 0; }
.type-info h3 { font-size: 0.98rem; margin-bottom: 6px; }
.type-info p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.55; }
.type-link { font-size: 0.8rem; font-weight: 600; color: var(--gold); }

.criteria-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.criteria-card { padding: 16px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); display: flex; gap: 12px; align-items: flex-start; }
.criteria-num { font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--gold-light); flex-shrink: 0; line-height: 1; }
.criteria-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.criteria-card p { font-size: 0.82rem; color: var(--text-muted); }

.steps { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: var(--cream); border-radius: var(--radius); }
.step-num { width: 34px; height: 34px; background: var(--forest); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.88rem; flex-shrink: 0; }
.step h4 { font-size: 0.93rem; margin-bottom: 4px; color: var(--forest); }
.step p { font-size: 0.87rem; color: var(--text-muted); }

.tip-box { display: flex; gap: 14px; padding: 16px 20px; background: rgba(200,150,60,0.08); border: 1px solid rgba(200,150,60,0.22); border-radius: var(--radius); margin-top: 20px; }
.tip-icon { font-size: 1.2rem; flex-shrink: 0; }
.tip-box div { font-size: 0.88rem; color: var(--text-muted); }
.tip-box strong { color: var(--forest); }
.tip-box a { color: var(--gold); text-decoration: underline; }

.treslag-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.treslag-card { padding: 22px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); }
.treslag-card.highlight { border-color: var(--gold-pale); background: rgba(200,150,60,0.06); }
.treslag-card h4 { font-size: 0.98rem; margin-bottom: 10px; }
.treslag-card p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.treslag-tag { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--forest); color: #fff; padding: 3px 10px; border-radius: 50px; }
.treslag-card.highlight .treslag-tag { background: var(--gold); color: var(--forest); }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-weight: 500; font-size: 0.93rem; color: var(--forest); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: background var(--transition); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--cream-dark); }
.faq-item p { padding: 0 20px 18px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.faq-item a { color: var(--gold); text-decoration: underline; }

/* =============================================
   OM PAGE
   ============================================= */
.om-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 72px; }
.om-intro-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 48px var(--shadow-md); }
.om-intro-img img { width: 100%; height: 440px; object-fit: cover; }
.om-intro-text h2 { font-size: 1.9rem; margin-bottom: 20px; }
.om-intro-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }

.benefits-section { margin-bottom: 72px; }
.section-title { font-size: 2.2rem; margin-bottom: 40px; text-align: center; }
.benefits-grid-om { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card-om {
  padding: 28px; background: var(--cream);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: all var(--transition); position: relative;
}
.benefit-card-om:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.benefit-num {
  position: absolute; top: 20px; right: 20px;
  font-family: 'DM Serif Display', serif; font-size: 2.5rem;
  color: var(--gold-pale); line-height: 1;
}
.benefit-icon-large { font-size: 1.8rem; margin-bottom: 14px; }
.benefit-card-om h3 { font-size: 1.05rem; margin-bottom: 10px; }
.benefit-card-om p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

.comparison-section { margin-bottom: 72px; }
.comparison-section h2 { font-size: 2rem; margin-bottom: 28px; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-table th { background: var(--forest); color: #fff; padding: 14px 18px; text-align: left; font-family: 'DM Serif Display', serif; font-size: 0.98rem; }
.comparison-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table td.good { color: var(--forest-light); font-weight: 600; }
.comparison-table td.bad { color: #c0392b; }
.comparison-table td.ok { color: var(--bark); }

.articles-section h2 { font-size: 2rem; margin-bottom: 32px; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.article-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.article-card img { width: 100%; height: 180px; object-fit: cover; }
.article-info { padding: 18px; }
.article-info h3 { font-size: 0.98rem; margin-bottom: 10px; }
.article-link { font-size: 0.83rem; font-weight: 600; color: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.55s ease both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-mosaic { animation: fadeUp 0.65s 0.1s ease both; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 24px 40px; text-align: center; }
  .hero-lead { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-mosaic { padding: 0 24px 40px; grid-template-columns: 1fr 1fr; }
  .mosaic-item.large { min-height: 260px; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .featured-row { grid-template-columns: 1fr; }
  .featured-card.primary-card { grid-row: auto; }
  .choose-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .guide-section:not(.full-width) { grid-template-columns: 1fr; }
  .guide-section:not(.full-width) .guide-aside { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid.four-col { grid-template-columns: 1fr 1fr; }
  .product-card.large-card { grid-column: span 2; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .benefits-grid-om { grid-template-columns: 1fr 1fr; }
  .treslag-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .om-intro { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .category-grid { grid-template-columns: 1fr; }
  .type-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid.four-col { grid-template-columns: 1fr 1fr; }
  .product-card.large-card { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid-om { grid-template-columns: 1fr; }
  .treslag-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-mosaic { grid-template-columns: 1fr; }
  .mosaic-col { display: none; }
}
