/* =============================================
   KJØKKENREDSKAP I TRE – Stylesheet
   Aesthetic: Warm organic minimalism
   Fonts: Playfair Display + DM Sans
   ============================================= */

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --bark: #3D2B1F;
  --bark-light: #5C4033;
  --wood: #8B5E3C;
  --wood-light: #B07D55;
  --wood-pale: #D4A97A;
  --moss: #4A5D4A;
  --moss-light: #6B8A6B;
  --accent: #C4622D;
  --accent-hover: #A0501F;
  --text: #2C1F18;
  --text-muted: #6B5347;
  --border: #E2D5C8;
  --shadow: rgba(61, 43, 31, 0.12);
  --shadow-md: rgba(61, 43, 31, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-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: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--bark);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER & NAV
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bark);
  line-height: 1.1;
  flex-shrink: 0;
}
.logo span {
  display: block;
  font-size: 0.7rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--wood);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--bark);
  background: var(--cream);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--bark);
  cursor: pointer;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(180,130,80,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,93,74,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  padding: 80px 48px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood);
  background: rgba(139,94,60,0.1);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--bark);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--wood);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.8rem;
  color: var(--bark-light);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 50px;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 0;
  position: relative;
}
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px var(--shadow-md);
  max-width: 500px;
  width: 100%;
}
.hero-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }

.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253,250,246,0.95);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  backdrop-filter: blur(8px);
}
.img-badge strong { display: block; font-size: 1.1rem; color: var(--accent); }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--bark);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-icon { font-size: 1rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,98,45,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--bark);
  border-color: var(--bark);
}
.btn-ghost:hover {
  background: var(--bark);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-lg { padding: 15px 32px; font-size: 1rem; }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { font-size: 2.2rem; margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 10px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.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(-4px);
  box-shadow: 0 16px 40px var(--shadow-md);
  border-color: var(--wood-pale);
}
.product-card.featured {
  grid-column: span 2;
  flex-direction: row;
}
.product-card.featured .product-img-wrap { flex: 1; }
.product-card.featured .product-info { flex: 1; padding: 36px; }
.product-card.featured .product-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.product-card.featured .product-img-wrap img { height: 340px; }

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-badge.sale { background: var(--accent); color: #fff; }
.product-badge.new { background: var(--moss); color: #fff; }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--bark);
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 14px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.price-new { font-size: 1.15rem; font-weight: 700; color: var(--accent); }
.price-old { font-size: 0.88rem; color: var(--text-muted); text-decoration: line-through; }
.price-save {
  font-size: 0.78rem;
  background: rgba(196,98,45,0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.product-price.large .price-new { font-size: 1.6rem; }

.product-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-top: auto;
  transition: color var(--transition);
}
.product-card:hover .product-link { color: var(--accent-hover); }

/* =============================================
   WHY WOOD
   ============================================= */
.why-wood { background: var(--cream); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 48px var(--shadow-md);
}
.why-image img { width: 100%; height: 520px; object-fit: cover; }

.why-content h2 { font-size: 2rem; margin-bottom: 32px; }

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.why-list strong { display: block; margin-bottom: 4px; color: var(--bark); }
.why-list p { font-size: 0.9rem; color: var(--text-muted); }

/* =============================================
   GUIDE TEASER
   ============================================= */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.guide-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.guide-card:hover .guide-img img { transform: scale(1.06); }
.guide-info { padding: 20px; }
.guide-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.guide-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 14px; }
.guide-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(196,98,45,0.2) 0%, transparent 70%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-content .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 1rem;
}
.cta-content .btn-primary:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--wood-pale); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-links h4 {
  font-family: 'Playfair 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.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--cream);
  padding: 72px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; 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.82rem;
  font-weight: 500;
  color: var(--wood);
  background: rgba(139,94,60,0.1);
  border: 1px solid rgba(139,94,60,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.guide-toc a:hover {
  background: var(--wood);
  color: #fff;
}

/* =============================================
   GUIDE SECTIONS
   ============================================= */
.guide-main { padding: 60px 0; }
.guide-container { max-width: 1100px; }

.guide-section {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.guide-section.full-width { grid-template-columns: 1fr; }
.guide-section:last-child { border-bottom: none; }

.guide-text h2 { font-size: 1.8rem; margin-bottom: 20px; }
.guide-text h3 { font-size: 1.2rem; margin-top: 28px; margin-bottom: 12px; color: var(--bark-light); }
.guide-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }

.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: 3px solid var(--wood-pale);
  color: var(--text-muted);
  font-size: 0.93rem;
}

.aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.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; }

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

.tip-box {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(196,98,45,0.08);
  border: 1px solid rgba(196,98,45,0.2);
  border-radius: var(--radius);
  margin-top: 20px;
}
.tip-icon { font-size: 1.3rem; flex-shrink: 0; }
.tip-box div { font-size: 0.9rem; color: var(--text-muted); }
.tip-box strong { color: var(--bark); }
.tip-box a { color: var(--accent); text-decoration: underline; }

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.choice-card {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.choice-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.choice-card h4 { font-size: 1rem; margin-bottom: 6px; }
.choice-card p { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bark);
  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(--wood); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--cream); }
.faq-item p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item a { color: var(--accent); text-decoration: underline; }

/* =============================================
   PRODUCTS PAGE EXTRAS
   ============================================= */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  background: #fff;
  box-shadow: 0 8px 32px var(--shadow);
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.featured-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-content h2 { font-size: 1.8rem; margin-bottom: 16px; }
.featured-content p { color: var(--text-muted); margin-bottom: 20px; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.feature-list li { font-size: 0.9rem; color: var(--moss); font-weight: 500; }

.subsection-title {
  font-size: 1.6rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.set-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
  background: var(--cream);
}
.set-img img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.set-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.set-content h3 { font-size: 1.4rem; margin: 10px 0 12px; }
.set-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

/* =============================================
   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.8rem; margin-bottom: 20px; }
.om-intro-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }

.benefits-section { margin-bottom: 72px; }
.benefits-section .text-center { text-align: center; margin-bottom: 40px; font-size: 2rem; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
  border-color: var(--wood-pale);
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.88rem; 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;
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--bark);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}
.comparison-table td {
  padding: 12px 20px;
  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(--moss); font-weight: 600; }
.comparison-table td.bad { color: #c0392b; }
.comparison-table td.ok { color: var(--wood); }
.comparison-note { margin-top: 16px; font-size: 0.9rem; color: var(--text-muted); font-style: italic; }

.treslag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.treslag-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.treslag-card h4 { font-size: 1rem; margin-bottom: 10px; }
.treslag-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.treslag-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--wood);
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
}

.articles-section h2 { font-size: 2rem; margin-bottom: 32px; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.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(-4px);
  box-shadow: 0 12px 32px 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.85rem; font-weight: 600; color: var(--accent); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 24px 40px; text-align: center; }
  .hero-lead { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image { padding: 0 24px 60px; }
  .hero-img-wrap img { height: 340px; }

  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-image img { height: 340px; }

  .guide-grid { grid-template-columns: 1fr 1fr; }

  .guide-section { grid-template-columns: 1fr; }
  .guide-section .guide-aside { display: none; }

  .featured-product { grid-template-columns: 1fr; }
  .featured-img img { min-height: 280px; }

  .set-banner { grid-template-columns: 1fr; }

  .om-intro { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .treslag-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .product-card.featured { flex-direction: column; grid-column: span 1; }
  .product-card.featured .product-img-wrap img { height: 220px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  .trust-bar { gap: 20px; }
  .guide-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }

  .cta-content h2 { font-size: 1.6rem; }
  .section { padding: 52px 0; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.6s ease both;
}
.hero-tag { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.15s; }
.hero-lead { animation-delay: 0.25s; }
.hero-actions { animation-delay: 0.35s; }
.hero-badges { animation-delay: 0.45s; }
.hero-image { animation: fadeUp 0.7s 0.2s ease both; }
