/* ================================================
   MAISON SARDDINNAH — MODERN THEME v3
   ENHANCED FOR 2026 WITH PREMIUM DESIGN
   ================================================ */

:root {
  --pink:        #ff6f91;
  --pink-dk:     #ff5078;
  --pink-lt:     #ffe4ec;
  --gold:        #c9a96e;
  --gold-lt:     #e8d5b0;
  --gold-dk:     #9a7a4a;
  --dark:        #1a1a1a;
  --dark-2:      #2a2118;
  --gray-light:  #f5f5f5;
  --gray-medium: #e8e8e8;
  --muted:       #666;
  --muted-dark:  #555;
  --bg:          #faf8f5;
  --bg-card:     #ffffff;
  --border:      #ebebeb;
  --border-warm: #e8e0d4;
  --accent-teal: #6fb4b4;
  --accent-sage: #8ba896;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-body:   'Montserrat', sans-serif;
  --max:         1200px;
  --nav-h:       64px;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1);
  --shadow-hover:0 12px 40px rgba(0,0,0,0.12);
  --trans:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:  0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font-family: inherit; }

/* ── MODERN TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { font-size: 1.01rem; line-height: 1.75; }
.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 16px; }

/* ── NAV MODERN ── */
.site-nav { position: sticky; top: 0; z-index: 200; background: #ffffff; border-bottom: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 32px; }
.nav-logo { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; color: var(--dark); letter-spacing: 0.01em; transition: all 0.3s ease; }
.nav-logo:hover { color: var(--pink); }
.nav-links { display: flex; gap: 28px; align-items: center; flex: 1; }
.nav-links a { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dark); transition: all var(--trans-fast); position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a.newsletter-link { background: var(--pink); color: #fff !important; padding: 9px 20px; border-radius: 24px; letter-spacing: 0.1em; transition: all var(--trans-fast); }
.nav-links a.newsletter-link:hover { background: var(--pink-dk); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 111, 145, 0.3); }
@media (max-width: 768px) { .nav-links { gap: 14px; } .nav-links a:not(.newsletter-link) { display: none; } }

/* ── HERO MODERN ── */
.hero { background: linear-gradient(135deg, #f9e8ee 0%, #ede8f5 50%, #e8f0f9 100%); padding: 120px 24px 100px; text-align: center; animation: fadeInDown 0.8s ease; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="%23ffffff" width="60" height="60"/><rect fill="%23f5f0f0" x="0" y="0" width="30" height="30"/><rect fill="%23f5f0f0" x="30" y="30" width="30" height="30"/></svg>'); opacity: 0.3; }
.hero-eyebrow { animation: fadeInUp 0.6s ease 0.2s both; }
.hero h1 { animation: fadeInUp 0.6s ease 0.3s both; color: var(--dark); }
.hero p { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-btns { animation: fadeInUp 0.6s ease 0.5s both; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── BUTTONS MODERN ── */
.btn-primary { background: var(--pink); color: #fff; padding: 14px 36px; border-radius: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; transition: all var(--trans); display: inline-block; border: 2px solid var(--pink); position: relative; overflow: hidden; }
.btn-primary:hover { background: var(--pink-dk); border-color: var(--pink-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 111, 145, 0.3); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 12px 32px; border-radius: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; transition: all var(--trans); display: inline-block; }
.btn-outline:hover { background: var(--dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-gold { background: var(--gold); color: #fff; padding: 12px 30px; border-radius: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; transition: all var(--trans); display: inline-block; }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3); }

/* ── SECTION WRAPPERS ── */
.home-section { max-width: var(--max); margin: 0 auto; padding: 80px 24px 60px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 48px; gap: 16px; }
.section-header h2 { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 500; }
.section-header .see-all { background: var(--pink); color: #fff; padding: 10px 24px; border-radius: 24px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; transition: all var(--trans); }
.section-header .see-all:hover { background: var(--pink-dk); transform: translateX(4px); }
.section-divider { border: none; border-top: 1px solid var(--border); max-width: var(--max); margin: 0 auto; }

/* ── CARD GRID ── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; gap: 24px; } }

/* ── POST CARD MODERN ── */
.post-card { border-radius: 12px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; box-shadow: var(--shadow); position: relative; }
.post-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,111,145,0.05) 0%, transparent 100%); opacity: 0; transition: opacity var(--trans); pointer-events: none; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--pink); }
.post-card:hover::before { opacity: 1; }
.card-img { height: 220px; overflow: hidden; position: relative; background: var(--gray-light); flex-shrink: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.post-card:hover .card-img img { transform: scale(1.1); }
.card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; font-style: italic; color: rgba(26,26,26,0.2); background: linear-gradient(135deg, #f5f2ee, #ede8e0); padding: 16px; text-align: center; }
.card-content { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 14px; opacity: 0.9; font-style: uppercase; }
.card-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; line-height: 1.45; color: var(--dark); margin-bottom: 14px; transition: color var(--trans-fast); }
.card-excerpt { font-size: 0.90rem; color: var(--muted); line-height: 1.8; margin-bottom: 24px; flex: 1; }
.card-read { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--pink); border-bottom: 2.5px solid var(--pink); padding-bottom: 4px; display: inline-block; transition: all var(--trans-fast); align-self: flex-start; }
.post-card:hover .card-title { color: var(--pink); }
.post-card:hover .card-read { color: var(--pink-dk); border-bottom-width: 3px; }

/* ── FEATURED CARD (first card larger) ── */
.card-grid.with-featured .post-card:first-child { grid-column: span 2; }
.card-grid.with-featured .post-card:first-child .card-img { height: 300px; }
@media (max-width: 900px) { .card-grid.with-featured .post-card:first-child { grid-column: span 1; } .card-grid.with-featured .post-card:first-child .card-img { height: 220px; } }

/* ── SECTION HERO (category pages) ── */
.section-hero { background: linear-gradient(135deg, #f9e8ee 0%, #ede8f5 50%, #e8f0f9 100%); padding: 76px 24px 64px; text-align: center; }
.section-hero .eyebrow { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.section-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; margin-bottom: 14px; }
.section-hero p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; font-weight: 300; }
.articles-wrap { max-width: var(--max); margin: 0 auto; padding: 56px 24px 80px; }

/* ── ARTICLE HERO ── */
.article-hero { background: linear-gradient(135deg, #2a2118 0%, #3b2d22 100%); padding: 76px 24px 64px; text-align: center; }
.article-hero .cat-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.article-hero h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; color: #f5f0e8; line-height: 1.22; max-width: 820px; margin: 0 auto 22px; }
.article-hero .intro { font-size: 1rem; color: #c8bfb0; max-width: 620px; margin: 0 auto; font-style: italic; line-height: 1.75; }

/* ── ARTICLE BODY ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.article-body p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.88; color: #3a3028; font-weight: 300; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 500; color: var(--dark); margin: 3rem 0 1.2rem; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--dark); margin: 2.4rem 0 1rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border-warm); }
.article-body blockquote { margin: 2.2rem 0; padding: 22px 30px; background: #fff; border-left: 4px solid var(--gold); font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: #5a4a38; line-height: 1.65; border-radius: 0 var(--radius) var(--radius) 0; }
.article-body ul, .article-body ol { margin: 0.8rem 0 1.5rem 1.6rem; }
.article-body li { margin-bottom: 0.7rem; font-size: 0.97rem; line-height: 1.75; color: #3a3028; }
.breadcrumb { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #aaa; margin-bottom: 40px; }
.breadcrumb a { color: #aaa; transition: color var(--trans); }
.breadcrumb a:hover { color: var(--pink); }

/* ── AFFILIATE BOX ── */
.affiliate-picks { background: #fff; border: 1px solid var(--border-warm); padding: 28px 32px; margin: 40px 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.affiliate-picks h3 { font-family: var(--font-serif); font-size: 1.12rem; color: var(--dark); margin: 0 0 18px; border: none; padding: 0; }
.affiliate-link { color: var(--gold); font-size: 0.94rem; font-weight: 500; display: block; margin-bottom: 10px; transition: color var(--trans); }
.affiliate-link:hover { color: #9a6e20; text-decoration: underline; }
.affiliate-note { font-size: 0.79rem !important; color: #aaa !important; margin-top: 14px !important; font-style: italic; }

/* ── NEWSLETTER BANNER ── */
.newsletter-banner { background: linear-gradient(135deg, #fff0f4 0%, #f5f0fa 100%); border-top: 1px solid #f0e0ea; border-bottom: 1px solid #f0e0ea; padding: 80px 24px; text-align: center; margin-top: 40px; }
.newsletter-banner .eyebrow { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--pink); margin-bottom: 14px; }
.newsletter-banner h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 500; margin-bottom: 14px; }
.newsletter-banner p { color: var(--muted); font-size: 0.97rem; max-width: 450px; margin: 0 auto 34px; font-weight: 300; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 13px 20px; border: 1.5px solid #ddd; border-radius: 28px; font-size: 0.9rem; font-family: var(--font-body); outline: none; background: #fff; }
.newsletter-form input:focus { border-color: var(--pink); }
.newsletter-form button { background: var(--pink); color: #fff; border: none; padding: 13px 30px; border-radius: 28px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: var(--font-body); transition: background var(--trans); white-space: nowrap; }
.newsletter-form button:hover { background: var(--pink-dk); }
.form-message { display: none; font-size: 0.87rem; color: #5a9b5a; margin-top: 14px; }

/* ── RESOURCES PAGE ── */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
@media (max-width: 900px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .resources-grid { grid-template-columns: 1fr; } }
.resource-card { background: #fff; border: 1px solid var(--border-warm); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans); }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.resource-card .icon { font-size: 2rem; margin-bottom: 14px; }
.resource-card h3 { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; margin-bottom: 10px; }
.resource-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.resource-card a.resource-link { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold); border-bottom: 1.5px solid var(--gold-lt); padding-bottom: 2px; display: inline-block; transition: color var(--trans); }
.resource-card a.resource-link:hover { color: #9a6e20; }
.resource-section-title { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--border-warm); }

/* ── FOOTER MODERN ── */
footer { background: linear-gradient(135deg, #1a1a1a 0%, #2a2118 100%); color: #aaa; padding: 80px 24px 40px; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="%23ffffff" width="60" height="60"/><rect fill="%23f5f0f0" x="0" y="0" width="30" height="30"/><rect fill="%23f5f0f0" x="30" y="30" width="30" height="30"/></svg>'); opacity: 0.02; }
footer > * { position: relative; z-index: 1; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; text-decoration: none; display: block; margin-bottom: 12px; font-weight: 500; transition: all 0.3s ease; }
.footer-logo:hover { color: var(--pink); }
.footer-tagline { font-size: 11px; color: #888; letter-spacing: 0.1em; margin-bottom: 40px; font-style: italic; }
.footer-nav { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.footer-nav a { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #888; text-decoration: none; font-weight: 500; transition: all 0.3s ease; position: relative; }
.footer-nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--pink); transition: width var(--trans); }
.footer-nav a:hover { color: var(--pink); }
.footer-nav a:hover::after { width: 100%; }
.footer-divider { width: 60px; height: 1px; background: #333; margin: 32px auto; }
.footer-legal { font-size: 10.5px; color: #666; margin-bottom: 16px; text-align: center; }
.footer-legal a { color: #888; text-decoration: none; margin: 0 6px; transition: color var(--trans-fast); }
.footer-legal a:hover { color: var(--pink); }
footer small { font-size: 10px; color: #555; display: block; text-align: center; }

/* ── RESOURCES GRID MODERN ── */
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 56px; }
@media (max-width: 900px) { .resources-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .resources-grid { grid-template-columns: 1fr; gap: 24px; } }
.resource-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.resource-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--trans); }
.resource-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.resource-card:hover::before { transform: scaleX(1); }
.resource-card .icon { font-size: 2.5rem; margin-bottom: 20px; transition: transform var(--trans); }
.resource-card:hover .icon { transform: scale(1.2) rotate(5deg); }
.resource-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; margin-bottom: 14px; color: var(--dark); transition: color var(--trans-fast); }
.resource-card:hover h3 { color: var(--pink); }
.resource-card p { font-size: 0.90rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.resource-card a.resource-link { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; display: inline-block; transition: all var(--trans-fast); }
.resource-card a.resource-link:hover { color: var(--gold-dk); border-bottom-color: var(--gold-dk); transform: translateX(2px); }
.resource-section-title { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--border); color: var(--dark); }

/* ── SECTION HERO MODERN ── */
.section-hero { background: linear-gradient(135deg, #f9e8ee 0%, #ede8f5 50%, #e8f0f9 100%); padding: 76px 24px 64px; text-align: center; position: relative; }
.section-hero .eyebrow { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 14px; }
.section-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; margin-bottom: 14px; }
.section-hero p { color: var(--muted); font-size: 1rem; max-width: 500px; margin: 0 auto; font-weight: 300; }

/* ── PAGE BODY MODERN ── */
.page-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.page-body h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin: 40px 0 16px; color: var(--dark); }
.page-body p { font-size: 0.97rem; color: #444; margin-bottom: 18px; line-height: 1.85; }
.page-body ul { margin: 0 0 18px 22px; }
.page-body li { font-size: 0.95rem; color: #444; margin-bottom: 9px; line-height: 1.75; }
.page-body a { color: var(--pink); border-bottom: 1px solid rgba(255,111,145,0.3); transition: all var(--trans-fast); }
.page-body a:hover { border-color: var(--pink); }

/* ── MODERN BADGES & TAGS ── */
.badge { display: inline-block; padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-right: 8px; margin-bottom: 8px; }
.badge-primary { background: var(--pink-lt); color: var(--pink-dk); }
.badge-gold { background: var(--gold-lt); color: var(--gold-dk); }
.badge-light { background: var(--gray-light); color: var(--dark); }

/* ── STAT BLOCK MODERN ── */
.stat-block { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
@media (max-width: 768px) { .stat-block { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stat-block { grid-template-columns: 1fr; } }
.stat-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all var(--trans); }
.stat-item:hover { box-shadow: var(--shadow-md); }
.stat-number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--pink); margin-bottom: 8px; }
.stat-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ── CTA BLOCK MODERN ── */
.cta-block { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dk) 100%); border-radius: var(--radius-lg); padding: 48px 32px; text-align: center; margin: 60px 0; color: white; box-shadow: var(--shadow-lg); }
.cta-block h3 { font-size: 1.8rem; margin-bottom: 16px; color: white; }
.cta-block p { font-size: 1rem; margin-bottom: 28px; opacity: 0.95; }
.cta-block .btn-outline { border-color: white; color: white; }
.cta-block .btn-outline:hover { background: white; color: var(--pink); }

/* ── TOOLTIP ── */
.tooltip { position: relative; cursor: help; border-bottom: 1px dotted currentColor; }
.tooltip:hover::after { content: attr(data-tooltip); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); padding: 8px 12px; background: var(--dark); color: white; border-radius: 4px; font-size: 12px; white-space: nowrap; z-index: 1000; margin-bottom: 8px; }

/* ── DIVIDER MODERN ── */
.divider { display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 40px 0; }
.divider.dots { height: auto; background: none; text-align: center; }
.divider.dots::before { content: '···'; letter-spacing: 8px; color: var(--border); font-size: 20px; }

/* ── CATEGORY CARDS MODERN ── */
.category-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 40px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); text-decoration: none; }
.category-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--pink), var(--gold)); opacity: 0; transition: opacity var(--trans); border-radius: var(--radius-lg); }
.category-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--pink); }
.category-icon { font-size: 3rem; margin-bottom: 20px; transition: transform var(--trans); }
.category-card:hover .category-icon { transform: scale(1.25) rotate(-10deg); }
.category-card h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 12px; color: var(--dark); transition: color var(--trans-fast); }
.category-card:hover h3 { color: var(--pink); }
.category-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.category-link { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; display: inline-block; transition: all var(--trans-fast); margin-top: auto; }
.category-card:hover .category-link { color: var(--gold-dk); border-color: var(--gold-dk); transform: translateX(4px); }

/* ── EDITORS NOTE MODERN ── */
.editors-note { max-width: var(--max); margin: 60px auto; padding: 48px 32px; background: linear-gradient(135deg, #f9f7f4 0%, #fff5f1 100%); border: 2px solid var(--border); border-radius: var(--radius-lg); }
.editors-note-inner { display: flex; gap: 32px; align-items: flex-start; }
.editors-note-avatar { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 500; color: var(--pink); min-width: 60px; }
.editors-note-content h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 16px; }
.editors-note-content p { font-size: 0.98rem; line-height: 1.8; margin-bottom: 12px; }
.editors-note-signature { font-style: italic; color: var(--muted); font-weight: 500; }
@media (max-width: 768px) { .editors-note-inner { flex-direction: column; } }

/* ── DESTINATION BAR MODERN ── */
.destination-bar { background: var(--gray-light); padding: 32px 24px; }
.destination-bar-inner { max-width: var(--max); margin: 0 auto; }
.destination-bar h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 20px; text-align: center; }
.destination-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.destination-links a { padding: 10px 20px; background: white; border: 1px solid var(--border); border-radius: 24px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; transition: all var(--trans); }
.destination-links a:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* ── FEATURED HERO SECTION ── */
.hero-featured { display: block; position: relative; height: 480px; overflow: hidden; text-decoration: none; background: #000; margin-bottom: 48px; border-radius: 12px; animation: fadeInDown 0.8s ease; }
.hero-featured-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.hero-featured:hover .hero-featured-bg { transform: scale(1.05); }
.hero-featured-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); transition: opacity 0.4s ease; }
.hero-featured:hover .hero-featured-overlay { opacity: 0.5; }
.hero-featured-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; color: white; }
.hero-featured-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 20px; }
.hero-featured h2 { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 500; line-height: 1.2; margin-bottom: 20px; }
.hero-featured p { font-size: 1.05rem; line-height: 1.8; opacity: 0.95; margin-bottom: 24px; max-width: 650px; }
.hero-featured-meta { font-size: 13px; opacity: 0.9; margin-bottom: 28px; letter-spacing: 0.05em; }
.hero-featured-read { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; display: inline-block; transition: all var(--trans-fast); }
.hero-featured:hover .hero-featured-read { color: #fff; border-color: #fff; transform: translateX(4px); }
@media (max-width: 768px) { .hero-featured { height: 380px; } .hero-featured-content { padding: 32px; } .hero-featured h2 { font-size: 1.7rem; } }

/* ── SECTION HEADER EDITORIAL ── */
.section-header-editorial { max-width: var(--max); margin: 0 auto 48px; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.section-header-editorial h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 500; }
.section-header-editorial a { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; transition: all var(--trans-fast); }
.section-header-editorial a:hover { color: var(--gold-dk); border-color: var(--gold-dk); transform: translateX(4px); }

/* ── EDITORIAL GRID ── */
.editorial-grid { max-width: var(--max); margin: 0 auto 80px; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) { .editorial-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .editorial-grid { grid-template-columns: 1fr; } }
.post-card-enhanced { text-decoration: none; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); display: flex; flex-direction: column; background: white; border: 1px solid var(--border); }
.post-card-enhanced:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); border-color: var(--pink); }
.post-card-enhanced.card-large { grid-column: span 2; }
@media (max-width: 1024px) { .post-card-enhanced.card-large { grid-column: span 1; } }
.card-img-enhanced { height: 260px; overflow: hidden; background: var(--gray-light); }
.card-img-enhanced img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.post-card-enhanced.card-large .card-img-enhanced { height: 340px; }
.post-card-enhanced:hover .card-img-enhanced img { transform: scale(1.1); }
.card-content-enhanced { padding: 32px 28px; display: flex; flex-direction: column; flex: 1; }
.card-tag { display: inline-block; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 14px; }
.card-title-enhanced { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; line-height: 1.4; margin-bottom: 14px; color: var(--dark); transition: color var(--trans-fast); }
.post-card-enhanced:hover .card-title-enhanced { color: var(--pink); }
.card-excerpt-enhanced { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 20px; flex: 1; }
.card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.card-read-more { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--pink); border-bottom: 2px solid var(--pink); padding-bottom: 2px; transition: all var(--trans-fast); }
.post-card-enhanced:hover .card-read-more { color: var(--pink-dk); }

/* ── ARTICLE HERO MODERN ── */
.article-hero { background: linear-gradient(135deg, #2a2118 0%, #3b2d22 100%); padding: 80px 24px 64px; text-align: center; }
.article-hero .cat-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 18px; }
.article-hero h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 500; color: #f5f0e8; line-height: 1.22; max-width: 820px; margin: 0 auto 22px; }
.article-hero .intro { font-size: 1rem; color: #c8bfb0; max-width: 620px; margin: 0 auto; font-style: italic; line-height: 1.75; }

/* ── ARTICLE BODY MODERN ── */
.article-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.article-body p { margin-bottom: 1.6rem; font-size: 1.01rem; line-height: 1.9; color: #3a3028; font-weight: 400; }
.article-body h2 { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 500; color: var(--dark); margin: 3.5rem 0 1.5rem; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; color: var(--dark); margin: 2.8rem 0 1.2rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--border); }
.article-body blockquote { margin: 2.5rem 0; padding: 24px 32px; background: linear-gradient(135deg, #f9f7f4 0%, #fff5f1 100%); border-left: 4px solid var(--gold); font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; color: #5a4a38; line-height: 1.75; border-radius: 0 8px 8px 0; }
.article-body ul, .article-body ol { margin: 1rem 0 1.8rem 1.8rem; }
.article-body li { margin-bottom: 0.9rem; font-size: 0.99rem; line-height: 1.8; color: #3a3028; }
.breadcrumb { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #aaa; margin-bottom: 40px; }
.breadcrumb a { color: #aaa; transition: color var(--trans-fast); }
.breadcrumb a:hover { color: var(--pink); }

/* ── PAGE HERO (static pages) ── */
.page-hero { background: linear-gradient(135deg, #f9e8ee 0%, #ede8f5 50%, #e8f0f9 100%); padding: 76px 24px 64px; text-align: center; }
.page-hero .eyebrow { font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 600; color: var(--pink); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; }
.page-body { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.page-body h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500; margin: 40px 0 16px; }
.page-body p { font-size: 0.97rem; color: #444; margin-bottom: 18px; line-height: 1.85; }
.page-body ul { margin: 0 0 18px 22px; }
.page-body li { font-size: 0.95rem; color: #444; margin-bottom: 9px; line-height: 1.75; }
.page-body a { color: var(--pink); border-bottom: 1px solid rgba(255,111,145,0.3); transition: border-color var(--trans); }
.page-body a:hover { border-color: var(--pink); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.pre-reveal { opacity: 0; transform: translateY(18px); }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--dark-2); color: #f5f0e8; padding: 72px 24px; display: flex; align-items: center; gap: 48px; max-width: 100%; }
.about-strip-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 48px; width: 100%; }
.about-strip-text { flex: 1; }
.about-strip-text .eyebrow { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.about-strip-text h2 { font-family: var(--font-serif); font-size: 2rem; font-weight: 500; margin-bottom: 16px; line-height: 1.3; }
.about-strip-text p { font-size: 0.97rem; color: #c0b8ae; line-height: 1.8; margin-bottom: 24px; max-width: 480px; }
@media (max-width: 700px) { .about-strip-inner { flex-direction: column; gap: 28px; } }

/* ── HOVER TITLE COLOR CHANGE (Image 11 style) ── */
a.post-card:hover .card-title,
a:hover .card-title,
.post-card:hover .card-title { color: var(--pink) !important; }
a.related-card:hover .related-card-title { color: var(--pink) !important; }

/* ── INLINE BLOG IMAGES ── */
.inline-img { margin: 2.6rem 0; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.inline-img img { width: 100%; height: 380px; object-fit: cover; display: block; }
.img-caption { font-size: 0.78rem; color: #999; text-align: center; padding: 8px 12px; background: #f9f7f4; font-style: italic; }
@media (max-width: 600px) { .inline-img img { height: 220px; } }

/* ── RELATED READS ── */
.related-reads-section { margin: 48px 0 0; padding-top: 40px; border-top: 1px solid var(--border-warm); }
.related-reads-heading { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 22px; border: none !important; padding: 0 !important; }
.related-reads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 680px) { .related-reads-grid { grid-template-columns: 1fr; } }
.related-card { display: flex; flex-direction: column; padding: 20px 22px; background: #fff; border: 1px solid var(--border-warm); border-radius: var(--radius); transition: transform var(--trans), box-shadow var(--trans); }
.related-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.related-card-label { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--gold); margin-bottom: 8px; }
.related-card-title { font-family: var(--font-serif); font-size: 0.97rem; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 14px; flex: 1; transition: color var(--trans); }
.related-card:hover .related-card-title { color: var(--pink); }
.related-card-link { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--gold); border-bottom: 1px solid var(--gold-lt); padding-bottom: 2px; display: inline-block; }

/* ── TRAVELPAYOUTS WIDGET BLOCK ── */
.tp-widget-block { margin: 36px 0; }
.tp-widget-inner { display: flex; align-items: center; gap: 18px; background: linear-gradient(135deg, #f8f4ee, #fff8f0); border: 1px solid var(--border-warm); border-left: 4px solid var(--gold); border-radius: 8px; padding: 22px 26px; flex-wrap: wrap; }
.tp-widget-icon { font-size: 2rem; flex-shrink: 0; }
.tp-widget-text { flex: 1; min-width: 180px; }
.tp-widget-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.tp-widget-text span { font-size: 0.84rem; color: var(--muted); }
.tp-widget-btn { background: var(--gold); color: #fff; padding: 11px 24px; border-radius: 26px; font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; white-space: nowrap; transition: background var(--trans); }
.tp-widget-btn:hover { background: #b8923a; }
@media (max-width: 600px) { .tp-widget-inner { flex-direction: column; align-items: flex-start; } }

/* ── TRAVEL TIP BOX ── */
.tip-box { background: linear-gradient(135deg, #f0f8f0, #e8f5e8); border-left: 4px solid #6ab04c; border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 1.8rem 0; }
.tip-box strong { display: block; font-size: 0.86rem; letter-spacing: 0.12em; text-transform: uppercase; color: #3d7a25; margin-bottom: 6px; }
.tip-box p { margin: 0; font-size: 0.93rem; color: #2a4a18; line-height: 1.7; }

/* ── STRONGER BODY TEXT (readability fix) ── */
.article-body p { color: #2a2118; font-weight: 400; font-size: 1.02rem; }
.article-body li { color: #2a2118; font-weight: 400; }
.article-body h3 { color: #1a1a1a; }

/* ── RESOURCES EMOJI EDITABLE ── */
.resource-card .icon[data-emoji]::before { content: attr(data-emoji); }
.resource-card .icon[data-emoji] { font-size: 2rem; }

/* ── NAVIGATION ENHANCEMENTS ── */
.nav-logo { transition: all 0.3s ease; }
.nav-logo:hover { color: var(--pink); transform: scale(1.02); }
.nav-links a { position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--pink); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-dropdown { position: relative; }
.nav-dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: white; min-width: 150px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-radius: 4px; z-index: 1000; }
.nav-dropdown:hover .nav-dropdown-content { display: flex; flex-direction: column; }
.nav-dropdown-content a { padding: 12px 16px; font-size: 11px; white-space: nowrap; transition: all 0.2s ease; }
.nav-dropdown-content a:hover { background: #f5f0e8; color: var(--pink); }

/* ── BREADCRUMB NAVIGATION ── */
.breadcrumb-nav { max-width: var(--max); margin: 0 auto; padding: 12px 24px; font-size: 11px; color: #999; background: #f9f7f4; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb-nav a { color: #666; text-decoration: none; transition: color 0.2s ease; }
.breadcrumb-nav a:hover { color: var(--pink); }
.breadcrumb-nav .breadcrumb-sep { color: #bbb; margin: 0 2px; }
.breadcrumb-nav .breadcrumb-current { color: var(--dark); font-weight: 500; }

/* ── HERO ENHANCEMENTS ── */
.hero { background: linear-gradient(135deg, #f9e8ee 0%, #ede8f5 50%, #e8f0f9 100%); padding: 120px 24px 100px; text-align: center; animation: fadeInDown 0.8s ease; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { animation: fadeInUp 0.6s ease 0.2s both; }
.hero h1 { animation: fadeInUp 0.6s ease 0.3s both; }
.hero p { animation: fadeInUp 0.6s ease 0.4s both; }
.hero-btns { animation: fadeInUp 0.6s ease 0.5s both; }

/* ── BUTTON ENHANCEMENTS ── */
.btn-primary, .btn-outline, .btn-gold { position: relative; overflow: hidden; }
.btn-primary::before, .btn-outline::before, .btn-gold::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: rgba(255,255,255,0.15); transition: left 0.3s ease; }
.btn-primary:hover::before, .btn-outline:hover::before, .btn-gold:hover::before { left: 100%; }

/* ── SECTION HEADER ENHANCEMENTS ── */
.section-header h2 { transition: all 0.3s ease; }
.section-header h2:hover { color: var(--pink); }
.section-header .see-all { transition: all 0.3s ease; position: relative; }
.section-header .see-all:hover { background: var(--pink-dk); transform: translateX(2px); }

/* ── IMAGE LAZY LOADING ── */
img[loading="lazy"] { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: loading 1.5s infinite; }
@keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
img[loading="lazy"].loaded { animation: none; background: none; }

/* ── RESOURCE CARD ENHANCEMENTS ── */
.resource-card { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.resource-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,0.15); }
.resource-card .icon { transition: transform 0.4s ease; }
.resource-card:hover .icon { transform: scale(1.15) rotate(5deg); }

/* ── FEATURED HERO SECTION ── */
.hero-featured { display: block; position: relative; height: 450px; overflow: hidden; text-decoration: none; background: #000; margin-bottom: 48px; animation: fadeInDown 0.8s ease; }
.hero-featured-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.hero-featured:hover .hero-featured-bg { transform: scale(1.05); }
.hero-featured-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%); transition: opacity 0.4s ease; }
.hero-featured:hover .hero-featured-overlay { opacity: 0.4; }
.hero-featured-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px 32px; color: white; }
.hero-featured-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.hero-featured h2 { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 500; line-height: 1.2; margin-bottom: 16px; }
.hero-featured p { font-size: 1rem; line-height: 1.7; opacity: 0.95; margin-bottom: 20px; max-width: 600px; }
.hero-featured-meta { font-size: 12px; opacity: 0.8; margin-bottom: 24px; letter-spacing: 0.1em; }
.hero-featured-read { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--gold); border-bottom: 2px solid var(--gold); padding-bottom: 4px; display: inline-block; transition: all 0.3s ease; }
.hero-featured:hover .hero-featured-read { color: #fff; border-color: #fff; transform: translateX(4px); }
@media (max-width: 768px) { .hero-featured { height: 350px; } .hero-featured-content { padding: 32px 24px; } .hero-featured h2 { font-size: 1.8rem; } }

/* ── DESTINATION INTRO ENHANCEMENTS ── */
.destination-intro { animation: fadeInUp 0.7s ease; }
.destination-intro h2 { transition: color 0.3s ease; }
.destination-intro h2:hover { color: var(--pink); }

/* ── TABLE OF CONTENTS ── */
.toc { background: linear-gradient(135deg, #f9f7f4 0%, #fff5f1 100%); border: 1px solid var(--border-warm); border-left: 4px solid var(--gold); border-radius: 6px; padding: 24px 28px; margin: 32px 0; }
.toc-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 10px; }
.toc a { font-size: 14px; color: var(--muted); text-decoration: none; transition: all 0.2s ease; }
.toc a:hover { color: var(--pink); padding-left: 4px; }

/* ── SOCIAL SHARE BUTTONS ── */
.share-buttons { display: flex; gap: 12px; margin: 32px 0; justify-content: center; flex-wrap: wrap; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #f0ede8; color: var(--dark); text-decoration: none; transition: all 0.3s ease; font-size: 18px; }
.share-btn:hover { background: var(--pink); color: white; transform: translateY(-2px); }
.share-btn.twitter:hover { background: #1DA1F2; }
.share-btn.facebook:hover { background: #1877F2; }
.share-btn.linkedin:hover { background: #0A66C2; }
.share-btn.pinterest:hover { background: #E60023; }

/* ── STICKY NEWSLETTER ── */
.sticky-newsletter { position: fixed; bottom: 20px; right: 20px; background: white; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); padding: 24px; max-width: 320px; z-index: 1000; animation: slideInUp 0.4s ease; display: none; }
.sticky-newsletter.show { display: block; }
.sticky-newsletter-close { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 20px; cursor: pointer; color: #999; transition: color 0.2s ease; }
.sticky-newsletter-close:hover { color: var(--dark); }
.sticky-newsletter h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.sticky-newsletter p { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }
.sticky-newsletter input { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.85rem; margin-bottom: 12px; }
.sticky-newsletter button { width: 100%; }
@keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) { .sticky-newsletter { max-width: calc(100% - 40px); } }

/* ── HOVER CARD EFFECTS ── */
.post-card { position: relative; }
.post-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,111,145,0.1) 0%, transparent 100%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.post-card:hover::before { opacity: 1; }

/* ── READABILITY IMPROVEMENTS ── */
img[loading="lazy"] { display: block; }
figure { margin: 2.6rem 0; text-align: center; }
figcaption { font-size: 0.85rem; color: #999; margin-top: 12px; font-style: italic; }

/* ── SMOOTH SCROLL BEHAVIOR ── */
html { scroll-behavior: smooth; }

/* ── FOOTER HOVER EFFECTS ── */
.footer-nav a::after { content: ''; display: block; height: 1px; background: var(--pink); width: 0; transition: width 0.3s ease; margin-top: 2px; }
.footer-nav a:hover::after { width: 100%; }
