/* =============================================
   STEKESPADE.NO – Stylesheet
   Aesthetic: Moderne kjøkken, høy kontrast
   Fonts: Fraunces + DM Sans
   Farger: Kull + varm hvit + terrakotta
   ============================================= */

:root {
  --charcoal: #1C1C1A;
  --charcoal-mid: #2E2E2C;
  --charcoal-light: #4A4A46;
  --warm-white: #FAF8F4;
  --cream: #F2EDE4;
  --cream-dark: #E8E0D4;
  --terra: #C25C30;
  --terra-hover: #A34A22;
  --terra-pale: #F0D0C0;
  --sage: #6B8A6B;
  --gold: #B8882A;
  --text: #1C1C1A;
  --text-muted: #5A5850;
  --border: #DDD6CA;
  --shadow: rgba(28,28,26,0.10);
  --shadow-md: rgba(28,28,26,0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.2s 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: 'Fraunces', serif; line-height: 1.15; color: var(--charcoal); }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   TOP BAR + HEADER
   ============================================= */
.top-bar { background: var(--charcoal); color: rgba(255,255,255,0.7); text-align: center; padding: 9px 24px; font-size: 0.78rem; letter-spacing: 0.04em; }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--warm-white); border-bottom: 1px solid var(--border); box-shadow: 0 1px 8px var(--shadow); }
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--charcoal); letter-spacing: -0.02em; }
.logo span { color: var(--terra); font-weight: 300; }

.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { font-size: 0.87rem; 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(--charcoal); background: var(--cream); }
.nav-cta { background: var(--terra) !important; color: #fff !important; padding: 7px 16px !important; border-radius: var(--radius) !important; font-weight: 500 !important; }
.nav-cta:hover { background: var(--terra-hover) !important; }

.hamburger { display: none; background: none; border: none; font-size: 1.4rem; color: var(--charcoal); 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-size: 0.95rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; color: var(--terra); font-weight: 500; }
.mobile-menu.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 86vh; overflow: hidden; }
.hero-left { background: var(--charcoal); display: flex; align-items: center; }
.hero-content { padding: 80px 60px 80px 80px; }
.hero-label { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.label-dot { width: 8px; height: 8px; background: var(--terra); border-radius: 50%; }
.hero-label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.8rem); line-height: 1.05; color: #fff; margin-bottom: 22px; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--terra); font-weight: 400; }
.hero-lead { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 420px; margin-bottom: 40px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.proof-item { font-size: 0.82rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.proof-icon { color: var(--terra); }

.hero-right { background: var(--cream); display: grid; grid-template-columns: 3fr 2fr; gap: 8px; padding: 32px; align-content: center; }
.hero-img-primary { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 48px var(--shadow-md); }
.hero-img-primary img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.hero-img-secondary { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px var(--shadow); }
.hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.img-tag { position: absolute; bottom: 12px; left: 12px; background: var(--charcoal); color: #fff; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 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(--terra); color: #fff; border-color: var(--terra); }
.btn-primary:hover { background: var(--terra-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(194,92,48,0.3); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); }
.btn-outline { background: transparent; color: var(--terra); border-color: var(--terra); }
.btn-outline:hover { background: var(--terra); color: #fff; }
.btn-cta { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-cta:hover { background: var(--charcoal-mid); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 0.95rem; }
.btn-sm { padding: 7px 14px; font-size: 0.82rem; }
.btn-full { width: 100%; margin-top: 8px; }

/* =============================================
   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: 1rem; max-width: 540px; margin: 0 auto; }
.section-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.section-cta { text-align: center; margin-top: 48px; }

/* =============================================
   PRODUCTS SECTION (home)
   ============================================= */
.products-section { background: var(--warm-white); }
.product-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }

.product-hero-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-hero-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px var(--shadow-md); }
.phc-img { position: relative; overflow: hidden; background: var(--cream); }
.phc-img img { width: 100%; height: 300px; object-fit: cover; transition: transform 0.5s ease; }
.product-hero-card:hover .phc-img img { transform: scale(1.04); }
.phc-badge { position: absolute; top: 12px; left: 12px; background: var(--terra); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; }
.phc-info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product-type { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 8px; display: block; }
.phc-info h3 { font-size: 1.25rem; margin-bottom: 10px; }
.phc-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; flex: 1; line-height: 1.6; }
.phc-specs { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.phc-specs li { display: flex; flex-direction: column; background: var(--cream); border-radius: var(--radius); padding: 8px 12px; }
.phc-specs li span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.phc-specs li strong { font-size: 0.85rem; color: var(--charcoal); }
.phc-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }

.combo-strip { display: grid; grid-template-columns: 200px 1fr auto; gap: 24px; align-items: center; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; padding-right: 32px; }
.combo-img img { width: 200px; height: 140px; object-fit: cover; }
.combo-text h3 { font-size: 1.1rem; margin-bottom: 6px; }
.combo-text p { font-size: 0.87rem; color: var(--text-muted); }

/* PRICE */
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-price.large .price-new { font-size: 1.6rem; }
.price-new { font-size: 1.15rem; font-weight: 600; color: var(--charcoal); font-family: 'Fraunces', serif; }
.price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 0.75rem; background: rgba(194,92,48,0.12); color: var(--terra); padding: 2px 8px; border-radius: 50px; font-weight: 600; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px; }
.cta-link { font-size: 0.84rem; font-weight: 600; color: var(--terra); }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { background: var(--cream); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-stack { display: grid; grid-template-columns: 3fr 2fr; gap: 10px; }
.why-img-top { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 16px 40px var(--shadow-md); }
.why-img-top img { width: 100%; height: 440px; object-fit: cover; }
.why-img-bot { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 24px var(--shadow); align-self: end; }
.why-img-bot img { width: 100%; height: 220px; object-fit: cover; }
.why-content h2 { font-size: 2rem; margin-bottom: 16px; }
.why-content > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.why-rows { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.why-row { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.why-row strong { display: block; font-size: 0.95rem; color: var(--charcoal); margin-bottom: 3px; }
.why-row p { font-size: 0.86rem; color: var(--text-muted); }

/* =============================================
   GUIDE SECTION (home)
   ============================================= */
.guide-section { background: var(--charcoal); }
.guide-section .section-header h2 { color: #fff; }
.guide-section .section-header p { color: rgba(255,255,255,0.6); }
.guide-section .section-tag { color: var(--terra); }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.guide-card { padding: 36px 28px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: background var(--transition); }
.guide-card:hover { background: rgba(255,255,255,0.08); }
.guide-num { font-family: 'Fraunces', serif; font-size: 2.5rem; font-weight: 300; color: rgba(255,255,255,0.12); display: block; margin-bottom: 12px; line-height: 1; }
.guide-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.guide-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }
.guide-link { font-size: 0.84rem; font-weight: 600; color: var(--terra); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: var(--terra); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { font-size: 2rem; color: #fff; margin-bottom: 10px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }
.cta-banner .btn-cta { background: #fff; color: var(--terra); border-color: #fff; }
.cta-banner .btn-cta:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,0.55); padding: 52px 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.2rem; }
.footer-brand .logo span { color: var(--terra); }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-links h4 { font-family: 'Fraunces', serif; color: #fff; font-size: 1rem; margin-bottom: 16px; font-weight: 600; }
.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.45); 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.28); }
.footer-bottom a { color: rgba(255,255,255,0.45); }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero { background: var(--cream); padding: 68px 0 56px; 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.05rem; max-width: 540px; 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(--terra); background: rgba(194,92,48,0.08); border: 1px solid rgba(194,92,48,0.2); padding: 5px 14px; border-radius: 50px; transition: all var(--transition); }
.guide-toc a:hover { background: var(--terra); color: #fff; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.product-full { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; background: #fff; box-shadow: 0 4px 20px var(--shadow); }
.product-full-gallery { display: grid; grid-template-rows: 3fr 1fr; gap: 4px; background: var(--cream); padding: 4px; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery-main img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.gal-badge { position: absolute; top: 12px; left: 12px; background: var(--terra); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.gallery-sub { border-radius: var(--radius); overflow: hidden; }
.gallery-sub img { width: 100%; height: 120px; object-fit: cover; }
.product-full-info { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.product-full-info h2 { font-size: 1.7rem; margin-bottom: 12px; }
.product-full-info p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.spec { background: var(--cream); padding: 10px 14px; border-radius: var(--radius); }
.spec span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; }
.spec strong { font-size: 0.88rem; color: var(--charcoal); }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.feature-list li { font-size: 0.88rem; color: var(--sage); font-weight: 500; }
.stock-note { font-size: 0.8rem; color: var(--sage); margin-top: 10px; }
.product-divider { text-align: center; margin: 16px 0; color: var(--text-muted); font-size: 0.85rem; position: relative; }
.product-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.product-divider span { background: var(--warm-white); padding: 0 16px; position: relative; }

.compare-box { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-top: 32px; margin-bottom: 48px; }
.compare-box h3 { font-size: 1.3rem; margin-bottom: 24px; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }
.compare-col h4 { font-size: 1rem; margin-bottom: 10px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.compare-col li { font-size: 0.87rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.compare-col li::before { content: '–'; position: absolute; left: 0; color: var(--terra); }
.compare-verdict { font-size: 0.9rem; color: var(--text-muted); background: rgba(194,92,48,0.07); border: 1px solid rgba(194,92,48,0.15); padding: 12px 16px; border-radius: var(--radius); }

.subsection-title { font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.related-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.related-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-info { padding: 14px; }
.related-info h4 { font-size: 0.92rem; margin-bottom: 6px; }

/* =============================================
   GUIDE SECTIONS (inner)
   ============================================= */
.guide-main { padding: 60px 0; }
.guide-container { max-width: 1100px; }
.guide-section { display: grid; grid-template-columns: 1fr 320px; 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.85rem; margin-bottom: 20px; }
.guide-text h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--charcoal-light); }
.guide-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; font-size: 0.95rem; }
.guide-text a { color: var(--terra); 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(--terra-pale); color: var(--text-muted); font-size: 0.92rem; }

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

.choice-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.choice-card { padding: 22px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); position: relative; display: flex; flex-direction: column; gap: 10px; }
.choice-card.featured-choice { border-color: var(--terra); background: rgba(194,92,48,0.05); }
.choice-rec { position: absolute; top: -10px; left: 14px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; background: var(--terra); color: #fff; padding: 2px 10px; border-radius: 50px; }
.choice-card h4 { font-size: 0.98rem; }
.choice-card p { font-size: 0.84rem; color: var(--text-muted); flex: 1; line-height: 1.55; }

.use-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.use-card { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.use-card.good { background: rgba(107,138,107,0.07); border-color: rgba(107,138,107,0.25); }
.use-card.neutral { background: var(--cream); }
.use-icon { font-size: 1.4rem; margin-bottom: 10px; }
.use-card h4 { font-size: 0.93rem; margin-bottom: 10px; }
.use-card ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.use-card li { font-size: 0.84rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.use-card li::before { content: '·'; position: absolute; left: 4px; color: var(--terra); font-weight: bold; }

.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(--charcoal); 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(--charcoal); }
.step p { font-size: 0.87rem; color: var(--text-muted); }

.tip-box { display: flex; gap: 14px; padding: 16px 20px; background: rgba(194,92,48,0.07); border: 1px solid rgba(194,92,48,0.2); 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(--charcoal); }
.tip-box a { color: var(--terra); text-decoration: underline; }

.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-table th { background: var(--charcoal); color: #fff; padding: 14px 18px; text-align: left; font-family: 'Fraunces', 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(--sage); font-weight: 600; }
.comparison-table td.bad { color: #c0392b; }
.comparison-table td.ok { color: var(--gold); }

.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(--charcoal); 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(--terra); 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(--terra); 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-center { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { padding: 28px; background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition); position: relative; overflow: hidden; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px var(--shadow); }
.benefit-num { position: absolute; top: 16px; right: 16px; font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 300; color: rgba(28,28,26,0.06); line-height: 1; }
.benefit-icon { font-size: 1.6rem; margin-bottom: 14px; display: block; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

.comparison-section { margin-bottom: 72px; }
.comparison-section h2 { font-size: 2rem; margin-bottom: 28px; }
.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(--terra); }

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 0; }
  .hero-content { padding: 60px 24px 48px; text-align: center; }
  .hero-lead { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-right { grid-template-columns: 1fr; padding: 24px; }
  .hero-img-secondary { display: none; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-img-stack { grid-template-columns: 1fr; }
  .why-img-bot { display: none; }
  .why-img-top img { height: 320px; }
  .guide-grid { grid-template-columns: 1fr; gap: 0; }
  .product-duo { grid-template-columns: 1fr; }
  .combo-strip { grid-template-columns: 1fr; padding: 20px; }
  .combo-img img { width: 100%; height: 200px; }
  .product-full { grid-template-columns: 1fr; }
  .guide-section { grid-template-columns: 1fr; }
  .guide-section .guide-aside { display: none; }
  .choice-cards { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .om-intro { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .phc-specs { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
}
