/*
Theme Name: The Change Diary
Author: ChatGPT
Version: 1.0
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:       #faf8f4;
  --bg2:      #f3efe8;
  --bg3:      #ffffff;
  --border:   rgba(0,0,0,0.08);
  --border2:  rgba(0,0,0,0.13);
  --white:    #ffffff;
  --off:      #faf8f4;
  --text:     #1e1a14;
  --muted:    #5a5248;
  --dim:      rgba(30,26,20,0.55);
  --gold:     #b8860b;
  --gold2:    #d4a020;
  --gold-dim: rgba(184,134,11,0.12);
  --gold-bg:  rgba(184,134,11,0.07);
  --line:     #06c755;
  --fb:       #1877f2;
  --orange:   #d45010;
  --font-body: 'IBM Plex Sans Thai Looped', sans-serif;
  --font-title:'IBM Plex Sans Thai', sans-serif;
  --radius: 16px;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --bg-card: #232018;
  --bg-row-hover: rgba(184,134,11,0.07);
}

body {
background: var(--bg);
color: var(--text);
font-family: var(--font-body);
font-weight: 400;
-webkit-font-smoothing: antialiased;
line-height: 1.6;
}

@keyframes shimmer {{
0%   {{ background-position: 0% 50%; }}
50%  {{ background-position: 100% 50%; }}
100% {{ background-position: 0% 50%; }}
}}

@media (max-width: 900px) {
.strip-in {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
  gap: 14px;
}
}
.trial-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 72px;
align-items: start;
}
@media (max-width: 900px) {
@media (max-width: 900px) {
.strip-in {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
  gap: 14px;
}
}
.trial-grid {
  grid-template-columns: 1fr;
  gap: 48px;
}
.trial-grid > div:first-child {
  order: 1;
}
.trial-grid > div:last-child {
  order: 2;
}
}

#urgency-bar {
  background: linear-gradient(90deg, #b8390e, #d4550f, #b8390e);
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 101;
}

#urgency-bar #close-btn {
  position:absolute; right:16px; top:50%; transform:translateY(-50%);
  background:none; border:none; color:rgba(255,255,255,0.6);
  font-size:18px; cursor:pointer; line-height:1;
}

/* ── NAV ── */
nav#site-nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 0 56px;
height: 64px;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(250,248,244,0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border);
}
nav#site-nav .nav-logo {
font-family: var(--font-title);
font-size: 15px;
font-weight: 600;
color: var(--text);
letter-spacing: 0.3px;
}
nav#site-nav .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
font-family: var(--font-body);
font-size: 13px;
font-weight: 500;
color: #5a5248;
text-decoration: none;
letter-spacing: 0.3px;
transition: color 0.2s;
position: relative;
}
nav#site-nav .nav-links a:not(.nav-cta):hover { color: #1e1a14; }
nav#site-nav .nav-links a:not(.nav-cta)::after {
content: '';
position: absolute;
bottom: -2px; left: 0; right: 0;
height: 1px;
background: var(--gold);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.25s ease;
}
nav#site-nav .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
background: var(--gold) !important;
color: #1a1408 !important;
padding: 8px 22px !important;
border-radius: 4px;
font-weight: 700 !important;
letter-spacing: 0.3px;
transition: all 0.2s !important;
}
nav#site-nav .nav-cta:hover { background: var(--gold2) !important; color: #1a1408 !important; box-shadow: 0 4px 16px rgba(184,134,11,0.3) !important; }

/* === Mobile Menu === */
/* ═══════════════════════════════
  HAMBURGER BUTTON
═══════════════════════════════ */
.hamburger-btn {
display: none;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
width: 38px;
height: 38px;
background: none;
border: none;
cursor: pointer;
padding: 6px;
border-radius: 6px;
transition: background 0.2s;
}
.hamburger-btn:hover { background: #f0e8d0; }
.hamburger-btn span {
display: block;
width: 22px;
height: 1.5px;
background: #b8860b;
border-radius: 2px;
transition: all 0.3s ease;
transform-origin: center;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════
  OVERLAY BACKDROP
═══════════════════════════════ */
.mobile-overlay {
display: none;
position: fixed;
inset: 0;
background: rgba(30, 22, 5, 0.45);
z-index: 998;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.mobile-overlay.open {
opacity: 1;
pointer-events: all;
}

/* ═══════════════════════════════
  SLIDE-IN DRAWER
═══════════════════════════════ */
.mobile-drawer {
position: fixed;
top: 0; right: 0;
width: 240px;
height: 100vh;
background: #faf8f4;
border-left: 1px solid #e8d9a0;
z-index: 999;
transform: translateX(100%);
transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
display: flex;
flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
border-bottom: 1px solid #e8d9a0;
}
.drawer-label {
font-size: 11px;
color: #b8860b;
letter-spacing: 1.5px;
text-transform: uppercase;
font-weight: 500;
}
.drawer-close {
background: none;
border: none;
font-size: 18px;
color: #8a7040;
cursor: pointer;
padding: 4px 8px;
border-radius: 4px;
transition: background 0.2s;
line-height: 1;
}
.drawer-close:hover { background: #f0e8d0; }

.drawer-nav {
display: flex;
flex-direction: column;
flex: 1;
padding: 12px 0;
}
.drawer-nav li { list-style: none; }
.drawer-nav a {
display: block;
padding: 13px 20px;
color: #3a2e0e;
text-decoration: none;
font-size: 15px;
font-weight: 400;
border-left: 3px solid transparent;
transition: all 0.15s ease;
}
.drawer-nav a:hover {
background: #f5edd8;
color: #b8860b;
border-left-color: #b8860b;
}
.drawer-nav a:active { background: #ede0c0; }

.drawer-footer {
padding: 16px 20px;
border-top: 1px solid #e8d9a0;
}
.drawer-cta {
display: block;
width: 100%;
padding: 11px 16px;
background: #b8860b;
color: #faf8f4;
text-align: center;
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 6px;
letter-spacing: 0.3px;
transition: background 0.2s ease;
}
.drawer-cta:hover { background: #9a7009; color: #faf8f4; }

/* ═══════════════════════════════
  RESPONSIVE
═══════════════════════════════ */
@media (max-width: 768px) {
nav#site-nav {
  padding: 0 20px;
}
nav#site-nav .nav-links {
  display: none;
}
.hamburger-btn {
  display: flex;
}
.mobile-overlay {
  display: block;
}
}

/* ── HERO ── */
.hero-wrap {
max-width: 1200px;
margin: 0 auto;
padding: 0 56px;
}
.hero {
min-height: 100vh;
display: grid;
grid-template-columns: 1fr 360px;
gap: 80px;
align-items: center;
padding-top: 100px;
}

.hero-tag {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--font-body);
font-size: 11px;
font-weight: 500;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 28px;
opacity: 0;
animation: up 0.7s 0.1s ease forwards;
}
.hero-tag::before {
content: '';
width: 24px; height: 1px;
background: var(--gold);
}

.hero-title {
font-family: var(--font-title);
font-size: clamp(52px, 6.5vw, 88px);
font-weight: 700;
line-height: 1.0;
letter-spacing: -1px;
color: var(--text);
margin-bottom: 10px;
opacity: 0;
animation: up 0.7s 0.15s ease forwards;
}

.hero-title-th {
font-family: var(--font-title);
font-size: clamp(22px, 2.8vw, 34px);
font-weight: 600;
color: var(--gold);
margin-bottom: 32px;
opacity: 0;
animation: up 0.7s 0.2s ease forwards;
}

.hero-hook {
font-family: var(--font-body);
font-size: 16px;
font-weight: 300;
font-style: italic;
color: #4a4238;
margin-bottom: 28px;
line-height: 1.8;
max-width: 500px;
padding-left: 18px;
border-left: 1px solid var(--gold);
opacity: 0;
animation: up 0.7s 0.22s ease forwards;
}

.hero-desc {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
line-height: 1.95;
color: #4a4238;
max-width: 480px;
margin-bottom: 44px;
opacity: 0;
animation: up 0.7s 0.25s ease forwards;
}

.hero-btns {
display: flex;
align-items: center;
gap: 16px;
opacity: 0;
animation: up 0.7s 0.3s ease forwards;
}
.btn-gold {
display: inline-flex;
align-items: center;
gap: 8px;
background: var(--gold);
color: #0e0e0f;
font-family: var(--font-body);
font-size: 14px;
font-weight: 600;
padding: 13px 28px;
border-radius: 4px;
text-decoration: none;
transition: all 0.25s ease;
letter-spacing: 0.2px;
}
.btn-gold:hover {
background: var(--gold2);
transform: translateY(-1px);
box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.btn-ghost {
font-family: var(--font-body);
font-size: 14px;
font-weight: 500;
color: #5a5248;
text-decoration: none;
display: flex;
align-items: center;
gap: 6px;
transition: color 0.2s;
letter-spacing: 0.2px;
}
.btn-ghost:hover { color: var(--white); }

.hero-stats {
display: flex;
gap: 40px;
margin-top: 56px;
padding-top: 32px;
padding-bottom: 32px;
border-top: 1px solid var(--border);
opacity: 0;
animation: up 0.7s 0.35s ease forwards;
align-items: flex-end;
}
.stat-n {
font-family: var(--font-title);
font-size: 28px;
font-weight: 600;
color: var(--text);
line-height: 1;
margin-bottom: 5px;
}
.stat-l {
font-family: var(--font-body);
font-size: 12px;
font-weight: 400;
color: #5a5248;
letter-spacing: 0.5px;
margin-top: 6px;
padding-bottom: 8px;
}

/* ── BOOK ── */
.book-visual {
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
animation: fadeIn 1s 0.4s ease forwards;
}
.book-wrap { position: relative; width: 300px; }
.book-img {
width: 300px;
border-radius: 2px 10px 10px 2px;
box-shadow:
  -10px 12px 0 #c8c0b4,
  0 28px 56px rgba(0,0,0,0.22),
  0 8px 20px rgba(0,0,0,0.12);
transform: perspective(900px) rotateY(-6deg);
transition: transform 0.5s ease, box-shadow 0.5s ease;
display: block;
cursor: pointer;
}
.book-img:hover {
transform: perspective(900px) rotateY(0deg);
box-shadow: -4px 4px 0 #050505, 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.1);
}
.book-shd {
position: absolute;
bottom: -18px; left: 12px; right: -12px;
height: 24px;
background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
filter: blur(8px);
}

/* ── STRIP ── */
.strip {
background: #ffffff;
border-top: 1px solid rgba(0,0,0,0.08);
border-bottom: 1px solid rgba(0,0,0,0.08);
padding: 20px 0;
}
.strip-in {
max-width: 1200px;
margin: 0 auto;
padding: 0 56px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
align-items: center;
}
.strip-item {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font-body);
font-size: 12px;
font-weight: 400;
color: #5a5248;
letter-spacing: 0.3px;
justify-content: center;
}
.strip-item strong { color: var(--text); font-weight: 500; }
.strip-dot { display: none; }

/* ── RELATE ── */
.relate-sec {
background: #1e1a14;
padding: 80px 0;
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.relate-title {
font-family: var(--font-title);
font-size: clamp(18px, 2vw, 22px);
font-weight: 600;
color: rgba(255,255,255,0.75);
text-align: center;
margin-bottom: 44px;
letter-spacing: 0.3px;
}
.feelings {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px 12px;
max-width: 800px;
margin: 0 auto;
padding: 0 56px;
}
.ft {
font-family: var(--font-body);
border-radius: 4px;
padding: 10px 22px;
font-weight: 600;
font-size: 14px;
transition: transform 0.2s ease, box-shadow 0.2s;
cursor: default;
letter-spacing: 0.2px;
}
.ft:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.ft-o { background: rgba(224,92,26,0.18); color: #ff7a40; border: 1px solid rgba(224,92,26,0.35); font-size: 17px; font-weight:600; }
.ft-g { background: rgba(212,168,67,0.15); color: #f0c040; border: 1px solid rgba(212,168,67,0.35); font-weight:600; }
.ft-w { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); font-weight:500; }
.ft-t { background: rgba(26,107,92,0.2); color: #5ddecb; border: 1px solid rgba(26,107,92,0.4); font-weight:600; }
.relate-sub {
text-align: center;
margin-top: 40px;
font-family: var(--font-body);
font-size: 15px;
font-weight: 500;
color: rgba(255,255,255,0.6);
letter-spacing: 0.3px;
}

/* ── SECTIONS SHARED ── */
.sec { padding: 96px 0; }
.sec.bg2 { background: var(--bg2); }
.sw { max-width: 1200px; margin: 0 auto; padding: 0 56px; }

.lbl {
font-family: var(--font-body);
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.lbl::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

/* ── ABOUT ── */
.about-g {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.about-h {
font-family: var(--font-title);
font-size: clamp(32px, 3.8vw, 50px);
font-weight: 700;
line-height: 1.15;
letter-spacing: -0.5px;
color: var(--text);
margin-bottom: 28px;
}
.about-h em { font-style: normal; color: var(--gold); }

.pull-q {
font-family: var(--font-body);
font-style: italic;
font-size: 16px;
font-weight: 400;
line-height: 1.8;
color: #3a3028;
padding-left: 20px;
border-left: 1px solid var(--gold);
margin-bottom: 32px;
}
.about-body {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
line-height: 2;
color: #4a4238;
}
.about-body p + p { margin-top: 16px; }
.about-body strong { color: var(--text); font-weight: 500; }

.symptom-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
margin-top: 28px;
}
.symptom-item {
display: flex;
align-items: center;
gap: 10px;
font-family: var(--font-body);
font-size: 13px;
font-weight: 500;
color: var(--text);
padding: 12px 14px;
background: var(--white);
border-radius: 4px;
border: 1px solid var(--border);
box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.sd {
width: 5px; height: 5px;
border-radius: 50%;
background: var(--gold);
flex-shrink: 0;
}

/* ── 4 TYPES ── */
.types-g {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
margin-top: 48px;
}
.type-card {
padding: 28px 22px;
border: 1px solid var(--border);
border-radius: 6px;
background: var(--white);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.type-card::after {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--gold);
transform: scaleX(0);
transform-origin: left;
transition: transform 0.35s ease;
}
.type-card:hover { border-color: var(--gold); background: var(--gold-bg); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.type-card:hover::after { transform: scaleX(1); }

.type-num {
font-family: var(--font-title);
font-size: 32px;
font-weight: 700;
color: rgba(0,0,0,0.06);
line-height: 1;
margin-bottom: 14px;
}
.type-name {
font-family: var(--font-title);
font-size: 16px;
font-weight: 600;
color: var(--text);
margin-bottom: 10px;
line-height: 1.4;
letter-spacing: 0.2px;
}
.type-desc {
font-family: var(--font-body);
font-size: 14px;
font-weight: 300;
line-height: 1.75;
color: var(--muted);
}

/* ── CHAPTERS ── */
.chap-h {
font-family: var(--font-title);
font-size: clamp(28px, 3.5vw, 42px);
font-weight: 700;
letter-spacing: -0.5px;
color: var(--text);
margin-bottom: 56px;
line-height: 1.2;
}
.phases-g {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2px;
}
.phase-item {
padding: 36px 40px;
background: var(--white);
border: 1px solid var(--border);
transition: all 0.3s ease;
position: relative;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.phase-item:hover {
background: var(--gold-bg);
border-color: var(--gold);
}
.phase-num {
font-family: var(--font-title);
font-size: 13px;
font-weight: 600;
letter-spacing: 2px;
color: var(--gold);
margin-bottom: 14px;
text-transform: uppercase;
}
.phase-name {
font-family: var(--font-title);
font-size: 22px;
font-weight: 700;
color: var(--text);
margin-bottom: 12px;
letter-spacing: -0.2px;
}
.phase-desc {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
line-height: 1.85;
color: #4a4238;
}

/* ── AUTHOR ── */
.author-g {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.author-quote {
font-family: var(--font-title);
font-size: clamp(22px, 2.8vw, 34px);
font-weight: 600;
line-height: 1.45;
color: var(--text);
margin-bottom: 28px;
letter-spacing: -0.3px;
}
.author-quote span { color: var(--gold); }
.author-text {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
line-height: 2;
color: #4a4238;
}
.author-text p + p { margin-top: 16px; }

.author-card {
background: #2c2518;
border: 1px solid rgba(212,168,67,0.25);
border-radius: 8px;
padding: 40px 36px;
position: relative;
overflow: hidden;
}
.author-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, var(--gold), transparent);
}
.author-badge {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(212,168,67,0.2);
color: #f0c860;
font-family: var(--font-body);
font-size: 11px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
padding: 7px 16px;
border-radius: 3px;
border: 1px solid rgba(212,168,67,0.4);
margin-bottom: 24px;
}
.author-name {
font-family: var(--font-title);
font-size: 26px;
font-weight: 700;
color: #ffffff;
letter-spacing: -0.3px;
margin-bottom: 4px;
text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.author-pen {
font-family: var(--font-body);
font-size: 13px;
font-weight: 500;
color: rgba(255,255,255,0.55);
margin-bottom: 24px;
letter-spacing: 0.3px;
}
.author-div { width: 100%; height: 1px; background: rgba(255,255,255,0.1); margin: 24px 0; }
.author-story {
font-family: var(--font-body);
font-size: 14px;
font-weight: 400;
line-height: 1.9;
color: rgba(255,255,255,0.72);
}
.author-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.author-tag {
font-family: var(--font-body);
font-size: 11px;
font-weight: 400;
padding: 5px 12px;
border-radius: 3px;
border: 1px solid var(--border);
color: var(--muted);
letter-spacing: 0.3px;
}

/* ── REVIEWS ── */
.rev-h {
font-family: var(--font-title);
font-size: clamp(26px, 3vw, 38px);
font-weight: 700;
letter-spacing: -0.5px;
line-height: 1.2;
color: var(--text);
margin-bottom: 40px;
}
.rev-g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rev-card {
background: var(--white);
padding: 28px;
border-radius: 6px;
border: 1px solid var(--border);
box-shadow: 0 2px 12px rgba(0,0,0,0.06);
transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.rev-card:hover {
border-color: rgba(201,168,76,0.2);
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
transform: translateY(-3px);
}
.rev-stars { color: var(--gold); font-size: 12px; letter-spacing: 3px; margin-bottom: 14px; }
.rev-text {
font-family: var(--font-body);
font-size: 14px;
font-weight: 400;
line-height: 1.9;
color: #3a342c;
margin-bottom: 20px;
}
.rev-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
.rev-av {
width: 36px; height: 36px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-title);
font-size: 13px; font-weight: 600;
color: var(--bg); flex-shrink: 0;
}
.rev-name { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text); }
.rev-role { font-family: var(--font-body); font-size: 11px; font-weight: 300; color: var(--muted); margin-top: 2px; }

/* ── PURCHASE ── */
.buy-sec {
background: #1e1a14;
color: var(--white);
text-align: center;
border-top: 1px solid rgba(0,0,0,0.1);
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.buy-in { max-width: 500px; margin: 0 auto; }
.buy-sec .lbl { color: var(--gold); justify-content: center; }
.buy-sec .lbl::before { display: none; }
.buy-h {
font-family: var(--font-title);
font-size: clamp(32px, 4vw, 50px);
font-weight: 700;
letter-spacing: -0.5px;
line-height: 1.15;
margin-bottom: 14px;
color: var(--white);
}
.buy-sub {
font-family: var(--font-body);
font-size: 15px;
font-weight: 300;
color: rgba(255,255,255,0.6);
margin-bottom: 48px;
line-height: 1.7;
}
.price-box {
background: #231e16;
border: 1px solid rgba(201,168,76,0.25);
border-radius: 8px;
padding: 32px 40px;
margin-bottom: 32px;
position: relative;
overflow: hidden;
}
.price-box::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.early-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(224,92,26,0.15);
color: #f08050;
font-family: var(--font-body);
font-size: 10px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
padding: 5px 12px;
border-radius: 3px;
border: 1px solid rgba(224,92,26,0.25);
margin-bottom: 20px;
}
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 8px; }
.pr-c {
font-family: var(--font-title);
font-size: 20px;
font-weight: 400;
color: var(--gold);
}
.pr-n {
font-family: var(--font-title);
font-size: 72px;
font-weight: 700;
letter-spacing: -2px;
line-height: 1;
color: var(--white);
}
.pr-note {
font-family: var(--font-body);
font-size: 13px;
font-weight: 300;
color: rgba(255,255,255,0.5);
margin-bottom: 0;
}
.pr-note s { color: var(--muted); }

.btn-line {
display: inline-flex;
align-items: center;
gap: 12px;
background: var(--line);
color: #fff;
font-family: var(--font-body);
font-size: 15px;
font-weight: 600;
padding: 16px 40px;
border-radius: 4px;
text-decoration: none;
box-shadow: 0 4px 20px rgba(6,199,85,0.25);
transition: all 0.25s ease;
margin-bottom: 12px;
letter-spacing: 0.2px;
width: 100%;
justify-content: center;
}
.btn-line:hover {
transform: translateY(-2px);
box-shadow: 0 8px 32px rgba(6,199,85,0.4);
}
.btn-fb-buy {
display: inline-flex;
align-items: center;
gap: 12px;
background: var(--fb);
color: #fff;
font-family: var(--font-body);
font-size: 15px;
font-weight: 600;
padding: 16px 40px;
border-radius: 4px;
text-decoration: none;
box-shadow: 0 4px 20px rgba(24,119,242,0.25);
transition: all 0.25s ease;
margin-bottom: 12px;
letter-spacing: 0.2px;
width: 100%;
justify-content: center;
}
.btn-fb-buy:hover {
transform: translateY(-2px);
box-shadow: 0 8px 32px rgba(24,119,242,0.4);
background: #1464d8;
}
.buy-fine {
font-family: var(--font-body);
font-size: 12px;
font-weight: 300;
color: rgba(255,255,255,0.4);
margin-bottom: 40px;
letter-spacing: 0.3px;
}
.perks {
display: flex;
justify-content: center;
gap: 32px;
padding-top: 32px;
border-top: 1px solid var(--border);
flex-wrap: wrap;
}
.perk {
display: flex;
align-items: center;
gap: 8px;
font-family: var(--font-body);
font-size: 12px;
font-weight: 300;
color: rgba(255,255,255,0.55);
letter-spacing: 0.3px;
}
.pk {
width: 18px; height: 18px;
border: 1px solid rgba(201,168,76,0.4);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 9px;
color: var(--gold);
}

/* ── CONTACT ── */
.con-g { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.con-h {
font-family: var(--font-title);
font-size: clamp(26px, 3.2vw, 38px);
font-weight: 700;
letter-spacing: -0.5px;
line-height: 1.2;
color: var(--text);
margin-bottom: 16px;
}
.con-body {
font-family: var(--font-body);
font-size: 15px;
font-weight: 400;
line-height: 1.85;
color: #4a4238;
}
.chans { display: flex; flex-direction: column; gap: 12px; }
.chan {
display: flex;
align-items: center;
gap: 16px;
padding: 18px 22px;
border-radius: 6px;
text-decoration: none;
border: 1px solid transparent;
transition: all 0.25s ease;
}
.chan.lc { background: rgba(6,199,85,0.08); border-color: rgba(6,199,85,0.2); }
.chan.lc:hover { background: var(--line); border-color: var(--line); transform: translateX(4px); }
.chan.fc { background: rgba(24,119,242,0.08); border-color: rgba(24,119,242,0.2); }
.chan.fc:hover { background: var(--fb); border-color: var(--fb); transform: translateX(4px); }
.chan:hover .cl, .chan:hover .cn { color: #fff !important; }
.chan:hover .ca { color: #fff; transform: translateX(4px); }
.ci { width: 40px; height: 40px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cl { font-family: var(--font-body); font-size: 10px; font-weight: 400; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; transition: color 0.25s; }
.cn { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: var(--text); transition: color 0.25s; }
.ca { margin-left: auto; color: var(--muted); font-size: 16px; transition: all 0.25s; }

.hours-box {
background: var(--white);
border: 1px solid var(--border);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
border-radius: 6px;
padding: 20px 22px;
}
.hl { font-family: var(--font-body); font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); margin-bottom: 8px; }
.ht { font-family: var(--font-body); font-size: 14px; font-weight: 400; color: var(--text); }
.hs { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--muted); margin-top: 3px; }

/* ── FOOTER ── */
.footer-wrap {
margin: 0 auto;
padding: 24px 56px;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid var(--border);
}
.fb { font-family: var(--font-title); font-size: 14px; font-weight: 500; color: var(--text); }
.fc { font-family: var(--font-body); font-size: 12px; font-weight: 300; color: var(--muted); letter-spacing: 0.3px; }

/* ── REVEAL ── */
.sr { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.sr.show { opacity: 1; transform: translateY(0); }

@keyframes up {
from { opacity: 0; transform: translateY(16px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav { padding: 0 24px; }
.nav-links { display: none; }
.hero-wrap { padding: 0 24px; }
.hero { grid-template-columns: 1fr; padding-top: 80px; gap: 48px; min-height: auto; padding-bottom: 60px; }
.book-visual { order: -1; }
.book-img { transform: none; width: 240px; }
.book-wrap { width: 240px; }
.hero-stats { flex-wrap: wrap; gap: 24px; }
.sw { padding: 0 24px; }
.sec { padding: 64px 0; }
.about-g, .con-g, .author-g { grid-template-columns: 1fr; gap: 36px; }
.types-g { grid-template-columns: 1fr 1fr; }
.phases-g { grid-template-columns: 1fr; }
.rev-g { grid-template-columns: 1fr; }
.symptom-grid { grid-template-columns: 1fr; }
.strip-in, .feelings { padding: 0 24px; }
.footer-wrap { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
}

@media (max-width: 900px) {
.strip-in {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
  gap: 14px;
}
}
.trial-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 72px;
align-items: start;
}
@media (max-width: 900px) {
@media (max-width: 900px) {
.strip-in {
  grid-template-columns: 1fr 1fr;
  padding: 0 24px;
  gap: 14px;
}
}
.trial-grid {
  grid-template-columns: 1fr;
  gap: 48px;
}
.trial-grid > div:first-child {
  order: 1;
}
.trial-grid > div:last-child {
  order: 2;
}
}

/* ── BLOG ── */
.page-header {
    padding-top: 120px;
    padding-bottom: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
  }

.page-header-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: up 0.6s 0.05s ease forwards;
  }
  .page-header-label::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--gold);
  }
  .page-header h1 {
    font-family: var(--font-title);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 16px;
    opacity: 0;
    animation: up 0.6s 0.1s ease forwards;
  }
  .page-header p {
    font-size: 15px;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.8;
    opacity: 0;
    animation: up 0.6s 0.15s ease forwards;
  }

  /* ── FILTER BAR ── */
  .filter-bar {
    max-width: 1200px;
    margin: 0 auto 56px;
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
    opacity: 0;
    animation: up 0.6s 0.2s ease forwards;
  }
  .filter-btn {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 100px;
    border: 1px solid var(--border2);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
    text-decoration: none;
  }
  .filter-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }
  .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #1a1408; font-weight: 600; }

  /* ── FEATURED POST ── */
  .featured-wrap {
    max-width: 1200px;
    margin: 0 auto 72px;
    padding: 0 56px;
    opacity: 0;
    animation: up 0.7s 0.25s ease forwards;
  }
  .featured-card {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  .featured-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
  .featured-img {
    background: #e8e2d6;
    min-height: 380px;
    position: relative;
    overflow: hidden;
  }
  .featured-img-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #e8e2d6 0%, #d4c8b0 50%, #c0b49a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    position: relative;
  }
  .featured-img-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(250,248,244,0.3));
  }
  .featured-badge {
    position: absolute;
    top: 24px; left: 24px;
    background: var(--gold);
    color: #1a1408;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
  }
  .featured-body {
    padding: 48px 48px 48px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .post-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .featured-body h2 {
    font-family: var(--font-title);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
  }
  .featured-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 32px;
  }
  .post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--dim);
    margin-bottom: 32px;
    padding-top: 0;
  }
  .post-meta-dot { width: 3px; height: 3px; background: var(--dim); border-radius: 50%; }
  .read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s;
  }
  .read-link:hover { gap: 14px; }
  .read-link svg { transition: transform 0.2s; }
  .read-link:hover svg { transform: translateX(4px); }

  /* ── GRID ── */
  .grid-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px 96px;
  }
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* ── POST CARD ── */
  .post-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    color: inherit;
  }
  .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  }
  .card-img {
    height: 200px;
    background: linear-gradient(135deg, #e8e2d6 0%, #d4c8b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    overflow: hidden;
  }
  .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.04));
  }
  .card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .card-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .card-body h3 {
    font-family: var(--font-title);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.1px;
  }
  .card-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
  }
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .card-meta {
    font-size: 11px;
    color: var(--dim);
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .card-read {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
  }
  .post-card:hover .card-read { gap: 9px; }

  /* ── WIDE CARD (2-col) ── */
  .post-card-wide {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .post-card-wide:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  }
  .post-card-wide .card-img {
    height: 100%;
    min-height: 220px;
    flex-direction: column;
  }
  .post-card-wide .card-body {
    padding: 32px 36px;
  }
  .post-card-wide h3 {
    font-size: 20px !important;
  }

  /* ── PAGINATION ── */
  .pagination {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pagination .page-numbers {
    width: 40px; height: 40px;
    border-radius: 4px;
    border: 1px solid var(--border2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    text-decoration: none;
  }
  .pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
  .pagination .page-numbers.current { background: var(--gold); border-color: var(--gold); color: #1a1408; font-weight: 700; }
  .pagination .page-numbers.next, .pagination .page-numbers.prev { width: 44px; }

  /* ── NEWSLETTER ── */
  .newsletter {
    background: #1e1a14;
    padding: 72px 0;
  }
  .newsletter-in {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 56px;
    text-align: center;
  }
  .newsletter-in .lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .newsletter-in .lbl::before,
  .newsletter-in .lbl::after { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .newsletter-in h2 {
    font-family: var(--font-title);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .newsletter-in p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 32px;
  }
  .nl-form { display: flex; gap: 10px; }
  .nl-input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    font-family: var(--font-body);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s;
  }
  .nl-input::placeholder { color: rgba(255,255,255,0.35); }
  .nl-input:focus { border-color: var(--gold); }
  .nl-btn {
    padding: 12px 28px;
    background: var(--gold);
    color: #1a1408;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    letter-spacing: 0.3px;
  }
  .nl-btn:hover { background: var(--gold2); }

  /* ── FOOTER ── */
  footer {
    background: #1e1a14;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 32px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }
  .footer-logo {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
  }
  .footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
  }

  /* ── ANIMATIONS ── */
  @keyframes up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .sr {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .sr.show { opacity: 1; transform: translateY(0); }

  /* ── PROGRESS BAR ── */
  .progress-bar {
    position: fixed;
    top: 64px; left: 0;
    height: 2px;
    background: var(--gold);
    z-index: 99;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    max-width: 800px;
    margin: 0 auto;
    padding: 88px 56px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--dim);
    opacity: 0;
    animation: up 0.5s 0.05s ease forwards;
  }
  .breadcrumb span {
      display: flex;
      gap: 8px;
  }
  .breadcrumb a {
    color: var(--dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumb a:hover { color: var(--gold); }
  .breadcrumb span { color: var(--gold); }
  
  /* ── ARTICLE HEADER ── */
  .article-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 56px 48px;
    opacity: 0;
    animation: up 0.6s 0.1s ease forwards;
  }
  .art-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
  }
  .art-tag::before { content: ''; width: 16px; height: 1px; background: var(--gold); }
  .article-header h1 {
    font-family: var(--font-title);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--text);
    margin-bottom: 24px;
  }
  .art-tag a {
    color: var(--gold);
    text-decoration: none;
  }
  .art-lead {
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: #4a4238;
    line-height: 1.9;
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 32px;
  }
  .art-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  .article-author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold-bg));
    border: 1px solid var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .article-author-info { flex: 1; }
  .article-author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
  }
  .article-author-sub {
    font-size: 12px;
    color: var(--dim);
  }
  .art-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--dim);
  }
  .art-stats-dot { width: 3px; height: 3px; background: var(--dim); border-radius: 50%; }

  /* ── HERO IMAGE ── */
  .hero-image {
    max-width: 900px;
    margin: 0 auto 56px;
    padding: 0 32px;
    opacity: 0;
    animation: fadeIn 0.8s 0.2s ease forwards;
  }
  .hero-image-inner {
    width: 100%;
    height: 420px;
    border-radius: 4px;
    background: linear-gradient(135deg, #e8e2d6 0%, #d0c7b4 50%, #bdb09a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-image-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(250,248,244,0.4));
  }
  .hero-caption {
    text-align: center;
    font-size: 12px;
    color: var(--dim);
    margin-top: 12px;
    font-style: italic;
  }

  /* ── CONTENT LAYOUT ── */
  .content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px 96px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 80px;
    align-items: start;
  }

  /* ── ARTICLE BODY ── */
  .article-body {
    opacity: 0;
    animation: up 0.7s 0.3s ease forwards;
  }
  .article-body h2 {
    font-family: var(--font-title);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: var(--text);
    margin: 48px 0 20px;
    letter-spacing: -0.2px;
    line-height: 1.3;
  }
  .article-body h2:first-child { margin-top: 0; }
  .article-body h3 {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 14px;
  }
  .article-body p {
    font-size: 16px;
    line-height: 2.0;
    color: #3a3530;
    margin-bottom: 20px;
  }
  .article-body ul, .article-body ol {
    margin: 8px 0 24px 20px;
  }
  .article-body li {
    font-size: 16px;
    line-height: 1.9;
    color: #3a3530;
    margin-bottom: 8px;
  }
  .article-body strong { font-weight: 600; color: var(--text); }
  .article-body em { font-style: italic; }

  /* Pull quote */
  .pull-quote {
    border-left: 3px solid var(--gold);
    background: var(--gold-bg);
    padding: 24px 28px;
    margin: 36px 0;
    border-radius: 0 4px 4px 0;
  }
  .pull-quote p {
    font-size: 18px !important;
    font-style: italic;
    font-weight: 500;
    color: var(--text) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
  }

  /* Highlight box */
  .highlight-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
    margin: 36px 0;
  }
  .highlight-box .hb-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .highlight-box h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
  }
  .highlight-box p {
    font-size: 14px !important;
    margin: 0 !important;
  }

  /* Divider */
  .art-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
  }

  /* Tags */
  .art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0 40px;
  }
  .art-tags a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border2);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s;
  }
  .art-tags a:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-bg); }

  /* Share */
  .art-share {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .share-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
  }
  .share-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid var(--border2);
    color: var(--muted);
    text-decoration: none;
    cursor: pointer;
    background: none;
    font-family: var(--font-body);
    transition: all 0.2s;
  }
  .share-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* Author box */
  .author-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .author-box-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e2d6, #d4c8b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    border: 2px solid var(--border);
  }
  .author-box-info h4 {
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
  }
  .author-box-info .role {
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .author-box-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
  }

  /* ── SIDEBAR ── */
  .sidebar {
    position: sticky;
    top: 88px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    animation: up 0.7s 0.35s ease forwards;
  }

  /* TOC */
  .toc-box {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 24px;
  }
  .toc-box h4 {
    font-family: var(--font-title);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .toc-list { list-style: none; }
  .toc-list li { margin-bottom: 8px; }
  .toc-list a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
    transition: color 0.2s;
  }
  .toc-list a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--border2);
    margin-top: 7px;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .toc-list a:hover { color: var(--gold); }
  .toc-list a:hover::before { background: var(--gold); }
  .toc-list a.active { color: var(--text); font-weight: 500; }
  .toc-list a.active::before { background: var(--gold); }

  /* Related posts sidebar */
  .related-sidebar h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .related-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
  }
  .related-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .related-item:hover { opacity: 0.75; }
  .related-thumb {
    width: 56px; height: 56px;
    border-radius: 3px;
    background: linear-gradient(135deg, #e8e2d6, #d4c8b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
  .related-text .rt-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .related-text .rt-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
  }

  /* ── RELATED POSTS BOTTOM ── */
  .related-bottom {
    background: var(--bg2);
    padding: 72px 0;
    border-top: 1px solid var(--border);
  }
  .related-bottom-in {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .rb-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .rb-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .related-bottom h2 {
    font-family: var(--font-title);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
  }
  .rb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .rb-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .rb-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
  .rb-card-img {
    height: 160px;
    background: linear-gradient(135deg, #e8e2d6, #d4c8b0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
  }
  .rb-card-body { padding: 20px 22px 24px; }
  .rb-card-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
  }
  .rb-card-body h3 {
    font-family: var(--font-title);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .rb-card-meta {
    font-size: 11px;
    color: var(--dim);
  }

    /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .breadcrumb, .article-header { padding-left: 32px; padding-right: 32px; }
    .content-wrap { padding: 0 32px 72px; gap: 56px; }
    .hero-image { padding: 0 16px; }
    .rb-grid { grid-template-columns: repeat(2, 1fr); }
    .related-bottom-in { padding: 0 32px; }

    .page-header, .filter-bar, .featured-wrap, .grid-wrap, .pagination { padding-left: 32px; padding-right: 32px; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }
    .post-card-wide { grid-column: span 2; }
  }

  @media (max-width: 768px) {
    .breadcrumb, .article-header { padding-left: 20px; padding-right: 20px; }
    .content-wrap { grid-template-columns: 1fr; padding: 0 20px 60px; gap: 0; }
    .sidebar { position: static; }
    .hero-image { padding: 0; }
    .hero-image-inner { height: 280px; }
    .rb-grid { grid-template-columns: 1fr; }
    .related-bottom-in, footer { padding-left: 20px; padding-right: 20px; }
    .art-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
    .art-stats { gap: 8px; }

    .page-header { padding-left: 20px; padding-right: 20px; padding-top: 96px; }
    .filter-bar, .featured-wrap, .grid-wrap, .pagination, .newsletter-in { padding-left: 20px; padding-right: 20px; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img { min-height: 220px; }
    .featured-body { padding: 32px 28px; }
    .posts-grid { grid-template-columns: 1fr; }
    .post-card-wide { grid-column: span 1; grid-template-columns: 1fr; }
  }

  /* ── Book cover ── */
.book-cover-wrap {
  margin-bottom: 28px;
}

.book-cover-wrap img {
  width: 160px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(184,134,11,0.2);
}

  /* ── Cards wrapper ── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

/* ── Single card ── */
.card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 16px 22px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  text-align: left;
  user-select: none;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(184,134,11,0.4);
  transform: translateY(-2px);
}

.card.selected {
  border-color: var(--gold);
  background: rgba(184,134,11,0.08);
}

/* badge */
.card-badge {
  position: absolute;
  top: -1px;
  right: 14px;
  background: var(--gold);
  color: #1a1612;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

.card-type {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.4;
}

.card-price-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 6px;
}

.card-price {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-light);
}

.card-price-unit {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.card-original {
  font-size: 12px;
  color: var(--text-muted);
}

.card-original s {
  color: var(--text-muted);
}

.card-original .save {
  color: var(--gold);
  font-weight: 600;
}

.card-features {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card-feature {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-feature::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
