/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Source Sans 3', sans-serif; color: #0a0a0a; background: #fff; line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --c-black: #0a0a0a;
  --c-white: #ffffff;
  --c-yellow: #FFD600;
  --c-yellow-light: #FFF3B0;
  --c-gray: #f5f5f0;
  --c-gray-mid: #e0e0d8;
  --c-text: #1a1a1a;
  --c-text-soft: #555;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --skew: -3deg;
  --unskew: 3deg;
}

/* TOPBAR */
.nt-topbar { background: var(--c-black); color: #aaa; font-size: .73rem; padding: 6px 0; letter-spacing: .04em; }
.nt-topbar-inner { max-width: 1220px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nt-topbar a { color: #888; transition: color .2s; }
.nt-topbar a:hover { color: var(--c-yellow); }

/* HEADER */
.nt-header { background: var(--c-white); border-bottom: 4px solid var(--c-yellow); position: sticky; top: 0; z-index: 200; }
.nt-header-inner { max-width: 1220px; margin: 0 auto; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.nt-logo { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--c-black); letter-spacing: -.03em; }
.nt-logo span { color: var(--c-yellow); display: inline-block; transform: skewX(-6deg); }
.nt-nav { display: flex; gap: 28px; align-items: center; }
.nt-nav a { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--c-black); transition: color .2s; position: relative; }
.nt-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 3px; background: var(--c-yellow); transition: width .3s; }
.nt-nav a:hover::after, .nt-nav a.active::after { width: 100%; }
.nt-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nt-burger span { width: 26px; height: 3px; background: var(--c-black); transition: .3s; }

/* DIAGONAL SECTIONS */
.nt-diag { position: relative; padding: 70px 0; overflow: hidden; }
.nt-diag::before { content: ''; position: absolute; top: -40px; left: -5%; right: -5%; height: 80px; background: inherit; transform: skewY(var(--skew)); z-index: 1; }
.nt-diag-yellow { background: var(--c-yellow); }
.nt-diag-black { background: var(--c-black); color: #fff; }
.nt-diag-gray { background: var(--c-gray); }
.nt-diag-white { background: var(--c-white); }

.nt-diag-content { max-width: 1220px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 2; }

/* MAIN GRID */
.nt-main { max-width: 1220px; margin: 0 auto; padding: 0 20px 60px; display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.nt-main-full { max-width: 1220px; margin: 0 auto; padding: 0 20px; }

/* HERO — article style */
.nt-hero { background: var(--c-white); padding: 50px 0 10px; }
.nt-hero-inner { max-width: 1220px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.nt-hero-tag { display: inline-block; background: var(--c-yellow); color: var(--c-black); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 5px 14px; margin-bottom: 18px; transform: skewX(-6deg); }
.nt-hero-tag span { display: inline-block; transform: skewX(6deg); }
.nt-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; color: var(--c-black); margin-bottom: 20px; }
.nt-hero-lead { font-size: 1.1rem; color: var(--c-text-soft); line-height: 1.8; margin-bottom: 18px; }
.nt-hero-meta { font-size: .8rem; color: #999; display: flex; gap: 16px; flex-wrap: wrap; padding-top: 14px; border-top: 2px solid var(--c-yellow); }
.nt-hero-meta strong { color: var(--c-black); }

/* ARTICLE BODY */
.nt-article h2 { font-family: var(--font-head); font-size: 1.55rem; color: var(--c-black); margin: 36px 0 14px; padding-left: 16px; border-left: 5px solid var(--c-yellow); }
.nt-article p { margin-bottom: 16px; color: var(--c-text); font-size: 1.02rem; }
.nt-article blockquote { margin: 30px 0; padding: 22px 28px; background: var(--c-yellow); color: var(--c-black); font-family: var(--font-head); font-style: italic; font-size: 1.12rem; line-height: 1.6; border: none; position: relative; transform: skewY(-1deg); }
.nt-article blockquote p { transform: skewY(1deg); color: var(--c-black); margin: 0; }

.nt-article-img { margin: 30px 0; position: relative; overflow: hidden; }
.nt-article-img img { width: 100%; object-fit: cover; max-height: 380px; }
.nt-article-img figcaption { font-size: .75rem; color: #999; margin-top: 6px; font-style: italic; }

/* CARDS GRID */
.nt-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.nt-card { background: var(--c-white); border: 2px solid var(--c-gray-mid); padding: 24px; position: relative; overflow: hidden; transition: transform .3s, border-color .3s; }
.nt-card:hover { transform: translateY(-4px) skewY(-0.5deg); border-color: var(--c-yellow); }
.nt-card::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--c-yellow); }
.nt-card-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--c-yellow); line-height: 1; margin-bottom: 6px; }
.nt-card h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--c-black); margin-bottom: 8px; }
.nt-card p { font-size: .88rem; color: var(--c-text-soft); line-height: 1.6; }
.nt-card-tag { display: inline-block; background: var(--c-yellow); color: var(--c-black); font-size: .68rem; font-weight: 700; padding: 3px 10px; margin-top: 10px; transform: skewX(-6deg); }

/* HIGHLIGHT BOX */
.nt-highlight { background: var(--c-black); color: #fff; padding: 30px 32px; margin: 32px 0; position: relative; clip-path: polygon(0 0, 100% 8px, 100% 100%, 0 calc(100% - 8px)); }
.nt-highlight h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--c-yellow); margin-bottom: 10px; }
.nt-highlight p { color: #ccc; font-size: .95rem; }
.nt-highlight ul { margin: 14px 0 0 20px; }
.nt-highlight ul li { color: #ddd; font-size: .9rem; margin-bottom: 6px; }

/* RECOMMENDATION BLOCK */
.nt-rec { display: flex; gap: 18px; background: var(--c-gray); padding: 22px; margin-bottom: 16px; border-left: 5px solid var(--c-yellow); transition: transform .2s; }
.nt-rec:hover { transform: translateX(6px); }
.nt-rec-icon { width: 52px; height: 52px; background: var(--c-yellow); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; transform: skewX(-6deg); }
.nt-rec h4 { font-family: var(--font-head); font-size: 1rem; color: var(--c-black); margin-bottom: 4px; }
.nt-rec p { font-size: .85rem; color: var(--c-text-soft); }

/* CONCLUSION */
.nt-conclusion { background: var(--c-yellow); padding: 32px; margin: 32px 0; clip-path: polygon(0 10px, 100% 0, 100% calc(100% - 10px), 0 100%); }
.nt-conclusion h3 { font-family: var(--font-head); font-size: 1.35rem; color: var(--c-black); margin-bottom: 12px; }
.nt-conclusion p { color: #333; font-size: .95rem; margin-bottom: 10px; }

/* SIDEBAR */
.nt-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 24px; }
.nt-sb-block { background: var(--c-gray); padding: 22px; }
.nt-sb-block h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--c-black); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 3px solid var(--c-yellow); }
.nt-sb-item { padding: 12px 0; border-bottom: 1px solid var(--c-gray-mid); }
.nt-sb-item:last-child { border-bottom: none; }
.nt-sb-item span { display: block; font-size: .68rem; color: var(--c-yellow); text-transform: uppercase; font-weight: 700; letter-spacing: .05em; margin-bottom: 3px; }
.nt-sb-item a { font-size: .9rem; font-weight: 600; color: var(--c-black); transition: color .2s; }
.nt-sb-item a:hover { color: var(--c-yellow); }
.nt-sb-item p { font-size: .78rem; color: #888; margin-top: 3px; }

.nt-sb-quote { background: var(--c-black); color: #ccc; padding: 22px; font-style: italic; font-size: .92rem; line-height: 1.6; }
.nt-sb-quote footer { margin-top: 10px; font-style: normal; font-size: .75rem; color: var(--c-yellow); }

.nt-sb-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.nt-sb-tag { background: var(--c-white); border: 1px solid var(--c-gray-mid); color: var(--c-text-soft); padding: 4px 12px; font-size: .75rem; font-weight: 600; transition: all .2s; }
.nt-sb-tag:hover { background: var(--c-yellow); color: var(--c-black); border-color: var(--c-yellow); }

.nt-sb-newsletter { background: var(--c-yellow); padding: 24px; text-align: center; }
.nt-sb-newsletter h4 { font-family: var(--font-head); color: var(--c-black); font-size: 1.1rem; margin-bottom: 8px; border: none; padding: 0; }
.nt-sb-newsletter p { font-size: .82rem; color: #333; margin-bottom: 14px; }
.nt-sb-newsletter input[type=email] { width: 100%; padding: 10px 14px; border: 2px solid var(--c-black); background: var(--c-white); font-family: var(--font-body); font-size: .85rem; margin-bottom: 8px; }
.nt-sb-newsletter button { width: 100%; padding: 11px; background: var(--c-black); color: var(--c-yellow); font-weight: 800; font-size: .85rem; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: .06em; transition: opacity .2s; }
.nt-sb-newsletter button:hover { opacity: .85; }

/* DIAGONAL STRIP */
.nt-strip { background: var(--c-yellow); padding: 40px 0; transform: skewY(var(--skew)); margin: 40px 0; overflow: hidden; }
.nt-strip-inner { transform: skewY(var(--unskew)); max-width: 1220px; margin: 0 auto; padding: 0 20px; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }
.nt-strip h3 { font-family: var(--font-head); font-size: 1.6rem; color: var(--c-black); flex: 1; min-width: 280px; }
.nt-strip p { flex: 2; font-size: .95rem; color: #333; min-width: 280px; }

/* FOOTER */
.nt-footer { background: var(--c-black); color: #aaa; padding: 50px 0 20px; position: relative; }
.nt-footer::before { content: ''; position: absolute; top: -30px; left: -5%; right: -5%; height: 60px; background: var(--c-black); transform: skewY(var(--skew)); }
.nt-footer-inner { max-width: 1220px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.nt-footer h4 { font-family: var(--font-head); color: var(--c-yellow); font-size: 1rem; margin-bottom: 14px; }
.nt-footer p { font-size: .85rem; line-height: 1.7; }
.nt-footer ul { list-style: none; }
.nt-footer li { margin-bottom: 8px; }
.nt-footer a { color: #888; font-size: .85rem; transition: color .2s; }
.nt-footer a:hover { color: var(--c-yellow); }
.nt-footer-bottom { max-width: 1220px; margin: 30px auto 0; padding: 18px 20px 0; border-top: 1px solid #222; font-size: .75rem; color: #666; }
.nt-footer-disclaimer { margin-top: 12px; font-size: .72rem; color: #555; line-height: 1.6; }

/* COOKIE BANNER */
.nt-cookie-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
#nt-cookie-close { display: none; }
#nt-cookie-close:checked ~ .nt-cookie-box { display: none; }
.nt-cookie-box { background: var(--c-black); color: #ccc; padding: 20px 24px; max-width: 380px; font-size: .82rem; line-height: 1.6; border: 2px solid var(--c-yellow); }
.nt-cookie-box p { margin-bottom: 12px; }
.nt-cookie-btns { display: flex; gap: 8px; }
.nt-cookie-btns label { padding: 8px 18px; font-size: .78rem; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: .04em; border: none; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
.nt-cookie-accept { background: var(--c-yellow); color: var(--c-black); }
.nt-cookie-reject { background: #333; color: #ccc; }
.nt-cookie-box a { color: var(--c-yellow); text-decoration: underline; }

/* SUCCESS / ERROR PAGES */
.nt-page-center { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; }
.nt-page-center h1 { font-family: var(--font-head); font-size: 2.6rem; color: var(--c-black); margin-bottom: 16px; }
.nt-page-center p { font-size: 1.05rem; color: var(--c-text-soft); margin-bottom: 20px; max-width: 500px; }
.nt-page-center .nt-btn { display: inline-block; background: var(--c-yellow); color: var(--c-black); font-weight: 800; padding: 14px 32px; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; transition: opacity .2s; min-height: 44px; }
.nt-page-center .nt-btn:hover { opacity: .85; }

/* LEGAL PAGES */
.nt-legal { max-width: 800px; margin: 0 auto; padding: 50px 20px; }
.nt-legal h1 { font-family: var(--font-head); font-size: 2rem; color: var(--c-black); margin-bottom: 28px; padding-bottom: 14px; border-bottom: 4px solid var(--c-yellow); }
.nt-legal h2 { font-family: var(--font-head); font-size: 1.2rem; color: var(--c-black); margin: 28px 0 10px; }
.nt-legal p { font-size: .92rem; color: var(--c-text-soft); margin-bottom: 12px; line-height: 1.7; }

/* ARTICLE LIST PAGE */
.nt-article-list { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.nt-article-list-item { display: flex; gap: 20px; background: var(--c-gray); padding: 22px; border-left: 5px solid var(--c-yellow); transition: transform .2s; }
.nt-article-list-item:hover { transform: translateX(6px); }
.nt-article-list-item h3 { font-family: var(--font-head); font-size: 1.1rem; color: var(--c-black); margin-bottom: 6px; }
.nt-article-list-item p { font-size: .85rem; color: var(--c-text-soft); }
.nt-article-list-item a { color: var(--c-black); font-weight: 700; font-size: .82rem; display: inline-block; margin-top: 8px; border-bottom: 2px solid var(--c-yellow); }

/* ANIMATIONS */
@keyframes nt-slide-up { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nt-slide-right { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
.nt-anim { animation: nt-slide-up .6s ease forwards; }
.nt-anim-2 { animation: nt-slide-up .6s .15s ease both; }
.nt-anim-3 { animation: nt-slide-up .6s .3s ease both; }
.nt-anim-r { animation: nt-slide-right .6s .2s ease both; }

/* BREADCRUMB */
.nt-breadcrumb { max-width: 1220px; margin: 0 auto; padding: 12px 20px; font-size: .78rem; color: #999; }
.nt-breadcrumb a { color: var(--c-text-soft); }
.nt-breadcrumb a:hover { color: var(--c-yellow); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nt-hero-inner, .nt-main { grid-template-columns: 1fr; gap: 30px; }
  .nt-sidebar { position: static; }
  .nt-cards { grid-template-columns: 1fr; }
  .nt-nav { display: none; }
  .nt-nav.nt-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 4px solid var(--c-yellow); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 200; }
  .nt-burger { display: flex; }
  .nt-footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .nt-strip-inner { flex-direction: column; }
  .nt-rec { flex-direction: column; }
}
@media (max-width: 480px) {
  .nt-hero h1 { font-size: 1.6rem; }
  .nt-topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .nt-cookie-box { max-width: calc(100vw - 40px); }
}

/* ===== HOMEPAGE ARTICLE LAYOUT ===== */

/* HERO — full-width immersive */
.hm-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; overflow: hidden; }
.hm-hero-inner { display: flex; flex-direction: column; justify-content: center; padding: 60px 60px 60px 80px; background: var(--c-white); }
.hm-hero-tag { display: inline-block; background: var(--c-yellow); color: var(--c-black); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; padding: 6px 16px; margin-bottom: 24px; }
.hm-hero-tag span { display: inline-block; }
.hm-hero h1 { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1.1; color: var(--c-black); margin-bottom: 22px; letter-spacing: -.02em; }
.hm-hero-lead { font-size: 1.08rem; color: var(--c-text-soft); line-height: 1.8; margin-bottom: 24px; max-width: 520px; }
.hm-hero-meta { display: flex; gap: 20px; flex-wrap: wrap; font-size: .8rem; color: #999; padding-top: 20px; border-top: 3px solid var(--c-yellow); }
.hm-hero-meta strong { color: var(--c-black); }
.hm-hero-img { position: relative; overflow: hidden; }
.hm-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* INTRO — two-column text */
.hm-intro { background: var(--c-gray); padding: 70px 0; }
.hm-intro-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hm-intro-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.hm-intro-col h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--c-black); margin-bottom: 18px; position: relative; padding-bottom: 16px; }
.hm-intro-col h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px; background: var(--c-yellow); }
.hm-intro-col p { color: var(--c-text); font-size: 1rem; line-height: 1.8; }

/* PILLARS — horizontal numbered blocks */
.hm-pillars { background: var(--c-white); padding: 80px 0; }
.hm-pillars-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hm-pillars-head { text-align: center; margin-bottom: 50px; }
.hm-pillars-head h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--c-black); margin-bottom: 12px; }
.hm-pillars-head p { color: var(--c-text-soft); font-size: .95rem; max-width: 560px; margin: 0 auto; }
.hm-pillars-grid { display: flex; flex-direction: column; gap: 0; }
.hm-pillar { display: grid; grid-template-columns: 100px 1fr; gap: 0; border-bottom: 1px solid var(--c-gray-mid); transition: background .3s; }
.hm-pillar:hover { background: var(--c-gray); }
.hm-pillar:last-child { border-bottom: none; }
.hm-pillar-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--c-yellow); display: flex; align-items: center; justify-content: center; border-right: 4px solid var(--c-yellow); }
.hm-pillar-body { padding: 28px 32px; }
.hm-pillar-body h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--c-black); margin-bottom: 8px; }
.hm-pillar-body p { color: var(--c-text-soft); font-size: .92rem; line-height: 1.7; }

/* TIP BANNER */
.hm-tip { background: var(--c-black); padding: 0; margin: 0; }
.hm-tip-inner { max-width: 1100px; margin: 0 auto; padding: 44px 40px; display: flex; gap: 24px; align-items: center; }
.hm-tip-badge { background: var(--c-yellow); color: var(--c-black); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 8px 18px; white-space: nowrap; flex-shrink: 0; }
.hm-tip p { color: #ccc; font-size: .95rem; line-height: 1.7; }
.hm-tip strong { color: var(--c-yellow); }

/* WIDE IMAGE */
.hm-wide-img { padding: 0; margin: 0; }
.hm-wide-img-inner { position: relative; max-height: 480px; overflow: hidden; }
.hm-wide-img-inner img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hm-wide-img-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 30px; background: linear-gradient(transparent, rgba(0,0,0,.7)); color: #fff; font-size: .78rem; font-style: italic; }

/* SPLIT — text + quote side by side */
.hm-split { background: var(--c-white); padding: 80px 0; }
.hm-split-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.hm-split-text h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--c-black); margin-bottom: 18px; padding-left: 18px; border-left: 5px solid var(--c-yellow); }
.hm-split-text p { color: var(--c-text); font-size: .98rem; line-height: 1.8; margin-bottom: 14px; }
.hm-split-quote { background: var(--c-black); padding: 40px 36px; position: relative; }
.hm-split-quote::before { content: '\201C'; font-family: var(--font-head); font-size: 8rem; color: rgba(255,214,0,.15); position: absolute; top: -20px; left: 16px; line-height: 1; pointer-events: none; }
.hm-split-quote blockquote { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; color: #eee; line-height: 1.6; margin: 0; padding: 0; background: none; transform: none; border: none; position: relative; z-index: 1; }
.hm-split-quote blockquote p { color: #eee; transform: none; margin: 0; }

/* FOOD — image + text, reversed */
.hm-food { background: var(--c-gray); padding: 0; overflow: hidden; }
.hm-food-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.hm-food-img { overflow: hidden; }
.hm-food-img img { width: 100%; height: 100%; object-fit: cover; }
.hm-food-text { display: flex; flex-direction: column; justify-content: center; padding: 50px 50px; }
.hm-food-text h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-black); margin-bottom: 18px; }
.hm-food-text p { color: var(--c-text); font-size: .95rem; line-height: 1.8; margin-bottom: 14px; }

/* HABITS — cards grid */
.hm-habits { background: var(--c-white); padding: 80px 0; }
.hm-habits-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hm-habits-title { font-family: var(--font-head); font-size: 1.8rem; color: var(--c-black); text-align: center; margin-bottom: 10px; }
.hm-habits-lead { color: var(--c-text-soft); font-size: .95rem; text-align: center; max-width: 520px; margin: 0 auto 44px; }
.hm-habits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hm-habit { background: var(--c-gray); padding: 30px 24px; text-align: center; transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden; }
.hm-habit::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--c-yellow); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.hm-habit:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.06); }
.hm-habit:hover::after { transform: scaleX(1); }
.hm-habit-icon { font-size: 2rem; margin-bottom: 14px; width: 58px; height: 58px; background: rgba(255,214,0,.15); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.hm-habit h4 { font-family: var(--font-head); font-size: 1rem; color: var(--c-black); margin-bottom: 8px; }
.hm-habit p { font-size: .83rem; color: var(--c-text-soft); line-height: 1.6; }

/* MICRO-MOVEMENT — dark section */
.hm-micro { background: var(--c-black); color: #fff; padding: 70px 0; }
.hm-micro-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hm-micro-head h2 { font-family: var(--font-head); font-size: 1.6rem; color: var(--c-yellow); margin-bottom: 12px; }
.hm-micro-head p { color: #aaa; font-size: .92rem; line-height: 1.7; }
.hm-micro-list { display: flex; flex-direction: column; gap: 0; }
.hm-micro-item { padding: 16px 20px; border-left: 4px solid var(--c-yellow); color: #ddd; font-size: .9rem; transition: background .2s, padding-left .2s; }
.hm-micro-item:hover { background: rgba(255,255,255,.05); padding-left: 28px; }

/* NATURE — two-column text */
.hm-nature { background: var(--c-white); padding: 70px 0; }
.hm-nature-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.hm-nature-text h2 { font-family: var(--font-head); font-size: 1.4rem; color: var(--c-black); margin-bottom: 16px; padding-bottom: 14px; border-bottom: 3px solid var(--c-yellow); }
.hm-nature-text p { color: var(--c-text); font-size: .95rem; line-height: 1.8; margin-bottom: 12px; }

/* READERS */
.hm-readers { background: var(--c-gray); padding: 60px 0; }
.hm-readers-inner { max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center; }
.hm-readers-inner h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-black); margin-bottom: 16px; }
.hm-readers-inner p { color: var(--c-text-soft); font-size: .95rem; line-height: 1.8; }

/* CONCLUSION */
.hm-conclusion { background: var(--c-yellow); padding: 70px 0; }
.hm-conclusion-inner { max-width: 800px; margin: 0 auto; padding: 0 20px; text-align: center; }
.hm-conclusion h2 { font-family: var(--font-head); font-size: 2rem; color: var(--c-black); margin-bottom: 18px; }
.hm-conclusion p { color: #333; font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }
.hm-conclusion-sign { font-weight: 600; color: var(--c-black); font-style: italic; }

/* RELATED ARTICLES */
.hm-related { background: var(--c-white); padding: 70px 0; }
.hm-related-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.hm-related-inner h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--c-black); text-align: center; margin-bottom: 36px; }
.hm-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hm-related-card { background: var(--c-gray); padding: 28px 24px; text-decoration: none; color: inherit; transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column; border: 2px solid transparent; }
.hm-related-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.07); border-color: var(--c-yellow); }
.hm-related-tag { display: inline-block; background: var(--c-yellow); color: var(--c-black); font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 4px 12px; margin-bottom: 14px; width: fit-content; }
.hm-related-card h4 { font-family: var(--font-head); font-size: 1.08rem; color: var(--c-black); margin-bottom: 10px; line-height: 1.35; }
.hm-related-card p { color: var(--c-text-soft); font-size: .84rem; line-height: 1.6; flex: 1; margin-bottom: 14px; }
.hm-related-link { font-weight: 700; font-size: .8rem; color: var(--c-black); border-bottom: 2px solid var(--c-yellow); padding-bottom: 2px; align-self: flex-start; }

/* NEWSLETTER */
.hm-newsletter { background: var(--c-black); padding: 60px 0; }
.hm-newsletter-inner { max-width: 560px; margin: 0 auto; padding: 0 20px; text-align: center; }
.hm-newsletter h3 { font-family: var(--font-head); font-size: 1.4rem; color: var(--c-yellow); margin-bottom: 8px; }
.hm-newsletter p { color: #aaa; font-size: .88rem; margin-bottom: 22px; }
.hm-newsletter-form { display: flex; gap: 10px; }
.hm-newsletter-form input[type=email] { flex: 1; padding: 14px 18px; border: 2px solid #333; background: #111; color: #fff; font-family: var(--font-body); font-size: .88rem; transition: border-color .3s; }
.hm-newsletter-form input[type=email]:focus { border-color: var(--c-yellow); outline: none; }
.hm-newsletter-form button { padding: 14px 26px; background: var(--c-yellow); color: var(--c-black); font-weight: 800; font-size: .82rem; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: .06em; transition: transform .2s; white-space: nowrap; }
.hm-newsletter-form button:hover { transform: translateY(-2px); }

/* HOMEPAGE RESPONSIVE */
@media (max-width: 900px) {
  .hm-hero { grid-template-columns: 1fr; min-height: auto; }
  .hm-hero-inner { padding: 50px 20px; }
  .hm-hero-img { height: 340px; }
  .hm-intro-cols { grid-template-columns: 1fr; gap: 30px; }
  .hm-pillar { grid-template-columns: 70px 1fr; }
  .hm-split-inner { grid-template-columns: 1fr; gap: 30px; }
  .hm-food-inner { grid-template-columns: 1fr; }
  .hm-food-img { height: 300px; }
  .hm-food-text { padding: 30px 20px; }
  .hm-habits-grid { grid-template-columns: 1fr 1fr; }
  .hm-micro-inner { grid-template-columns: 1fr; gap: 30px; }
  .hm-nature-inner { grid-template-columns: 1fr; gap: 30px; }
  .hm-related-grid { grid-template-columns: 1fr; }
  .hm-tip-inner { flex-direction: column; align-items: flex-start; }
  .hm-newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .hm-hero h1 { font-size: 1.8rem; }
  .hm-habits-grid { grid-template-columns: 1fr; }
  .hm-hero-meta { flex-direction: column; gap: 6px; }
}