/*
Theme Name: i.am.nangi
Theme URI: https://beacons.ai/i.am.nangi
Author: Nangi
Author URI: https://beacons.ai/i.am.nangi
Description: A warm, editorial wellness theme for i.am.nangi — Women 30+ who refuse to fade. Rooted in Kenyan lifestyle, built for women who eat well, age boldly, and live on their own terms. Combines the editorial style of i.am.nangi with Lillia's clean blog layout and social integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hey-nangi
Tags: wellness, women, blog, e-commerce, editorial, custom-colors
*/

/* =============================================
   GOOGLE FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* =============================================
   DESIGN TOKENS — SINGLE SOURCE OF TRUTH
   ============================================= */
:root {
  /* Core Palette */
  --cream:        #FDF8F4;
  --warm-white:   #FAF5EF;
  --blush:        #F2D9D0;
  --blush-light:  #FBF0EB;
  --gold:         #C9A96E;
  --gold-light:   #EAD9B5;
  --rose:         #C98B7A;
  --terracotta:   #C4714A;
  --deep:         #3D2B2B;
  --charcoal:     #5C3D3D;
  --text-muted:   #9B7B7B;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Layout */
  --section-v:  6rem;
  --section-h:  5rem;
  --container:  1200px;

  /* Motion */
  --ease: 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--deep);
}
p { line-height: 1.85; color: var(--text-muted); }

/* =============================================
   UTILITY
   ============================================= */
.container   { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: var(--section-v) var(--section-h); }

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-eyebrow-line::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-title { margin-bottom: 1.5rem; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.section-title em { color: var(--rose); font-style: italic; }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  text-decoration: none;
}
.btn-gold    { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--rose); color: white; transform: translateY(-2px); }

.btn-primary { background: var(--terracotta); color: white; }
.btn-primary:hover { background: var(--deep); color: white; transform: translateY(-2px); }

.btn-dark    { background: var(--deep); color: white; }
.btn-dark:hover { background: var(--terracotta); color: white; }

.btn-outline { background: transparent; color: var(--deep); border: 1px solid var(--deep); }
.btn-outline:hover { background: var(--deep); color: white; }

.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: white; }

.btn-white   { background: white; color: var(--terracotta); }
.btn-white:hover { background: var(--deep); color: white; }

.btn-ghost-white { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost-white:hover { background: white; color: var(--terracotta); }

/* Arrow-style text link */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--ease);
}
.btn-arrow::after { content: '→'; transition: transform var(--ease); }
.btn-arrow:hover  { color: var(--gold); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem var(--section-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(253,248,244,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(61,43,43,0.07); }

.site-branding a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--deep);
}
.site-branding a em,
.site-branding a span { color: var(--gold); font-style: normal; }

.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.main-navigation a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.main-navigation a:hover { color: var(--gold); }

.main-navigation .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.55rem 1.4rem;
  transition: all var(--ease);
}
.main-navigation .nav-cta:hover { background: var(--gold); color: white; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--deep);
  margin: 5px 0;
  transition: all var(--ease);
}

/* =============================================
   HERO — HOME
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-left {
  background: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem 6rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
}
.hero-title-main em { color: var(--rose); font-style: italic; }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(253,248,244,0.6);
  max-width: 400px;
  margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-right {
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 65%;
  border-radius: 50% 0 0 0;
  background: rgba(201,139,122,0.1);
  pointer-events: none;
}
.hero-right::after {
  content: 'N';
  position: absolute;
  bottom: -3rem; right: -2rem;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 300;
  color: rgba(201,139,122,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: 100%;
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.stat-card {
  background: white;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--ease);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card.accent { background: var(--terracotta); }
.stat-card.accent .stat-number { color: white; }
.stat-card.accent .stat-label  { color: rgba(255,255,255,0.7); }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--deep);
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.intro-strip-item {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.intro-strip-item::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-text {
  padding: var(--section-v) 5rem var(--section-v) 6rem;
  background: var(--warm-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1.2rem; }
.about-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--terracotta);
  line-height: 1.5;
  padding: 1.5rem 0 1.5rem 1.8rem;
  border-left: 3px solid var(--terracotta);
  margin: 2rem 0;
}

.about-visual {
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: rgba(196,113,74,0.12);
  border-radius: 50% 0 0 0;
}

.about-stats-box {
  background: white;
  padding: 3rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(61,43,43,0.08);
  width: 100%;
  max-width: 320px;
}
.about-stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.about-stat:last-child  { border-bottom: none; padding-bottom: 0; }
.about-stat:first-child { padding-top: 0; }
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about-stat-num span { font-size: 1.8rem; color: var(--gold); }
.about-stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   PILLARS
   ============================================= */
.pillars-section {
  background: var(--cream);
  padding: var(--section-v) var(--section-h);
  text-align: center;
}
.pillars-section .section-title { max-width: 600px; margin: 0 auto 1rem; }
.pillars-section > p { max-width: 560px; margin: 0 auto 4rem; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(61,43,43,0.06);
  max-width: 1100px;
  margin: 0 auto;
}
/* 4-column variant for some pages */
.pillars-grid.col-4 { grid-template-columns: repeat(4, 1fr); }

.pillar-item {
  background: var(--warm-white);
  padding: 3rem 1.8rem;
  transition: background var(--ease);
}
.pillar-item:hover { background: var(--blush-light); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.pillar-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.7rem;
}
.pillar-item p { font-size: 0.82rem; line-height: 1.7; }

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--warm-white);
  padding: var(--section-v) var(--section-h);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}

.service-cards-list { display: grid; gap: 2px; }
.service-card {
  background: var(--cream);
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  overflow: hidden;
  transition: transform var(--ease);
}
.service-card:hover { transform: translateX(5px); }

.service-num {
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--terracotta);
  transition: background var(--ease), color var(--ease);
}
.service-card:hover .service-num { background: var(--terracotta); color: white; }

.service-body { padding: 2.5rem; }
.service-tag {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.8rem;
}
.service-desc { font-size: 0.87rem; line-height: 1.75; margin-bottom: 1.2rem; max-width: 520px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.chip {
  font-size: 0.7rem;
  padding: 0.28rem 0.75rem;
  background: var(--blush-light);
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.service-price-col {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-left: 1px solid rgba(201,169,110,0.18);
}
.price-label-sm {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 0.2rem;
  text-align: right;
}
.price-period {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  text-align: right;
}

/* =============================================
   SHOP / DIGITAL PRODUCTS
   ============================================= */
.shop-section {
  background: var(--deep);
  padding: var(--section-v) var(--section-h);
}
.shop-section .section-title { color: var(--cream); }
.shop-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: end;
}
.shop-header p { color: rgba(253,248,244,0.55); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: rgba(255,255,255,0.04);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(201,169,110,0.1);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.product-card:hover { background: rgba(255,255,255,0.07); }
.product-card:hover::before { transform: scaleX(1); }
.product-card.featured {
  background: var(--terracotta);
  border-color: var(--terracotta);
}
.product-card.featured::before { display: none; }

.product-emoji { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.product-name  { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); margin-bottom: 0.8rem; line-height: 1.3; }
.product-desc  { font-size: 0.83rem; line-height: 1.75; color: rgba(253,248,244,0.55); margin-bottom: 2rem; }
.product-card.featured .product-desc { color: rgba(255,255,255,0.82); }
.product-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); margin-bottom: 1.2rem; }
.product-card.featured .product-price { color: white; }
.product-btn {
  display: inline-block;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--cream);
  transition: all var(--ease);
}
.product-btn:hover { background: var(--gold); border-color: var(--gold); }
.product-card.featured .product-btn { background: white; color: var(--terracotta); border-color: white; }
.product-card.featured .product-btn:hover { background: var(--deep); color: white; border-color: var(--deep); }

/* =============================================
   BLOG / JOURNAL
   ============================================= */
.journal-section {
  background: var(--warm-white);
  padding: var(--section-v) var(--section-h);
}
.journal-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 3rem;
}
.post-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform var(--ease);
}
.post-card:hover { transform: translateY(-4px); }
.post-image {
  background: var(--blush);
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}
.post-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.post-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  z-index: 1;
}
.post-content { padding: 1.8rem 2rem 2.2rem; }
.post-date {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}
.post-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--deep);
  margin-bottom: 0.8rem;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--terracotta); }
.post-read-more {
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  display: inline-block;
}
.post-read-more:hover { color: var(--deep); border-color: var(--deep); }

/* =============================================
   TESTIMONIAL
   ============================================= */
.testimonial-section {
  background: var(--blush);
  padding: 7rem var(--section-h);
  text-align: center;
}
.testimonial-section blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--deep);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}
.testimonial-section cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   COMMUNITY
   ============================================= */
.community-section {
  background: var(--cream);
  padding: var(--section-v) var(--section-h);
  text-align: center;
}
.community-section .section-title { max-width: 600px; margin: 0 auto 1rem; }
.community-section > p { max-width: 520px; margin: 0 auto 3.5rem; }

.community-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(61,43,43,0.06);
  max-width: 800px;
  margin: 0 auto 3rem;
}
.comm-feat { background: var(--warm-white); padding: 2.5rem 2rem; transition: background var(--ease); }
.comm-feat:hover { background: var(--blush-light); }
.comm-feat span { font-size: 1.5rem; display: block; margin-bottom: 0.8rem; }
.comm-feat p  { font-size: 0.82rem; line-height: 1.6; }

/* =============================================
   EMAIL JOIN SECTION
   ============================================= */
.email-section {
  background: var(--deep);
  padding: var(--section-v) var(--section-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.email-text .section-title { color: var(--cream); }
.email-text p { color: rgba(253,248,244,0.6); margin-top: 1rem; }

.email-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 3rem;
}
.email-form { display: grid; gap: 1rem; }
.email-form input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--ease);
}
.email-form input::placeholder { color: rgba(253,248,244,0.35); }
.email-form input:focus { border-color: var(--gold); }
.email-form button {
  width: 100%;
  padding: 1rem;
  background: var(--terracotta);
  color: white;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease);
}
.email-form button:hover { background: var(--gold); }
.email-promise {
  font-size: 0.72rem;
  color: rgba(253,248,244,0.35);
  text-align: center;
  margin-top: 0.5rem;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--terracotta);
  padding: 5rem var(--section-h);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-banner h2 { color: white; font-size: clamp(1.8rem, 2.5vw, 2.6rem); }
.cta-banner h2 em { color: rgba(255,255,255,0.75); font-style: italic; }
.cta-banner p  { color: rgba(255,255,255,0.72); margin-top: 0.7rem; }
.cta-actions   { display: flex; gap: 1rem; flex-shrink: 0; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  min-height: 62vh;
  background: var(--deep);
  display: flex;
  align-items: center;
  padding: 10rem var(--section-h) 6rem;
  position: relative;
  overflow: hidden;
}
.about-hero::after {
  content: '✦';
  position: absolute;
  right: 8rem; bottom: -2rem;
  font-size: 18rem;
  color: rgba(201,169,110,0.07);
  line-height: 1;
  pointer-events: none;
}
.about-hero-content { max-width: 700px; position: relative; z-index: 1; }
.about-hero h1 { color: var(--cream); margin-bottom: 1.5rem; }
.about-hero h1 em { color: var(--rose); font-style: italic; }
.about-hero p  { color: rgba(253,248,244,0.62); font-size: 1.05rem; max-width: 560px; }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--warm-white);
}
.story-visual {
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.story-visual::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 50%;
  background: var(--terracotta);
  opacity: 0.1;
  border-radius: 50% 0 0 0;
}
.story-text {
  padding: var(--section-v) 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p  { margin-bottom: 1.2rem; }
.story-text blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  line-height: 1.5;
  padding: 1.5rem 0 1.5rem 1.8rem;
  border-left: 3px solid var(--terracotta);
  margin: 2rem 0;
}

.about-values { background: var(--cream); padding: var(--section-v) var(--section-h); text-align: center; }
.about-values h2 { margin-bottom: 1rem; }
.about-values > p { max-width: 500px; margin: 0 auto 3.5rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(61,43,43,0.06);
  max-width: 900px;
  margin: 0 auto;
}
.value-item { background: var(--warm-white); padding: 3rem 2rem; transition: background var(--ease); }
.value-item:hover { background: var(--blush-light); }
.value-item span { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.value-item h4   { font-size: 1rem; margin-bottom: 0.6rem; }
.value-item p    { font-size: 0.82rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: var(--blush);
  padding: 10rem var(--section-h) 5rem;
  text-align: center;
}
.contact-hero h1 { margin-bottom: 1rem; }
.contact-hero p  { max-width: 500px; margin: 0 auto; font-size: 1rem; }

.contact-body {
  padding: var(--section-v) var(--section-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  background: var(--warm-white);
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }
.contact-links   { display: grid; gap: 1px; background: rgba(61,43,43,0.06); }
.contact-link-item {
  background: var(--warm-white);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background var(--ease);
}
.contact-link-item:hover { background: var(--blush-light); }
.contact-link-item span  { font-size: 1.3rem; }
.contact-link-item a     { font-size: 0.88rem; font-weight: 500; color: var(--deep); }

.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 2rem; }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(201,169,110,0.28);
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--deep);
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--terracotta); }
.contact-form textarea { height: 140px; resize: vertical; }

/* =============================================
   BRAND PARTNERSHIPS
   ============================================= */
.brands-section {
  background: var(--blush-light);
  padding: var(--section-v) var(--section-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.brands-info p { margin-bottom: 1.2rem; }
.ptype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(61,43,43,0.06);
  margin-top: 2rem;
}
.ptype-item { background: var(--warm-white); padding: 1.8rem 1.5rem; transition: background var(--ease); }
.ptype-item:hover { background: white; }
.ptype-item span { font-size: 1.4rem; display: block; margin-bottom: 0.5rem; }
.ptype-item h5   { font-size: 0.9rem; margin-bottom: 0.3rem; }
.ptype-item p    { font-size: 0.78rem; line-height: 1.5; }

.brand-stats-card {
  background: var(--deep);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  color: var(--cream);
}
.brand-stats-card::after {
  content: '✦';
  position: absolute;
  bottom: -1rem; right: -1rem;
  font-size: 9rem;
  color: rgba(201,169,110,0.08);
  line-height: 1;
}
.brand-stats-card h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 1rem; line-height: 1.3; }
.brand-stats-card p  { color: rgba(253,248,244,0.6); font-size: 0.87rem; }
.brand-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.bstat span  { font-family: var(--font-display); font-size: 1.8rem; color: var(--terracotta); display: block; }
.bstat small { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(253,248,244,0.45); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--deep);
  padding: 5rem var(--section-h) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--cream);
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand .logo span,
.footer-brand .logo em { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: 0.83rem; max-width: 280px; color: rgba(253,248,244,0.45); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a  { font-size: 0.83rem; color: rgba(253,248,244,0.45); }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(253,248,244,0.3);
  padding-top: 1rem;
  letter-spacing: 0.04em;
}
.footer-bottom em { color: var(--gold); font-style: italic; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.75s ease backwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================= */
@media (max-width: 1100px) {
  :root { --section-h: 3rem; --section-v: 5rem; }

  .hero { grid-template-columns: 1fr; }
  .hero-left  { padding: 8rem 3rem 4rem; }
  .hero-right { padding: 4rem 3rem; min-height: 360px; }

  .about-section { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 3rem; }

  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .pillars-grid.col-4 { grid-template-columns: repeat(2, 1fr); }

  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-card { grid-template-columns: 60px 1fr; }
  .service-price-col { display: none; }

  .shop-header { grid-template-columns: 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: 1fr 1fr; }

  .journal-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }

  .email-section { grid-template-columns: 1fr; gap: 3rem; }

  .cta-banner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-actions { flex-wrap: wrap; }

  .about-story { grid-template-columns: 1fr; }
  .story-visual { min-height: 300px; }
  .story-text { padding: 4rem 3rem; }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .brands-section { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --section-h: 1.5rem; --section-v: 4rem; }

  .site-header { padding: 1rem 1.5rem; }
  .main-navigation {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(61,43,43,0.08);
    z-index: 999;
  }
  .main-navigation.open { display: flex; }
  .main-navigation ul { flex-direction: column; gap: 0; }
  .main-navigation ul li a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .menu-toggle { display: block; }

  .pillars-grid,
  .pillars-grid.col-4 { grid-template-columns: 1fr 1fr; }
  .products-grid  { grid-template-columns: 1fr; }
  .posts-grid     { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }
  .ptype-grid     { grid-template-columns: 1fr; }
  .community-features { grid-template-columns: 1fr; }
  .stats-grid     { max-width: 280px; }
  .intro-strip    { gap: 1.5rem; padding: 1.2rem 1.5rem; justify-content: flex-start; overflow-x: auto; }
}

/* =============================================
   REFINEMENT UPDATE — READABILITY & SPACING
   ============================================= */

/* Larger, more readable base type */
html { font-size: 17px; }

body { line-height: 1.85; }

/* Bigger body text everywhere */
p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--charcoal);
}

/* Section descriptions (the paragraph directly under a heading) */
.pillars-section > p,
.community-section > p,
.about-text p,
.story-text p,
.services-header p,
.shop-header p,
.journal-header p,
.email-text p {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* Bigger heading scale */
h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
h2 { font-size: clamp(2.4rem, 3.8vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-title { font-size: clamp(2.4rem, 3.8vw, 3.8rem); }

/* Hero subtitle bigger */
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.9;
  color: rgba(253,248,244,0.75);
}

/* More section breathing room */
:root {
  --section-v: 8rem;
  --section-h: 6rem;
}

/* Pillar text bigger and readable */
.pillar-item h4 { font-size: 1.2rem; margin-bottom: 0.9rem; }
.pillar-item p  { font-size: 1rem; line-height: 1.85; }

/* Remove pillar icon gap when no icon present */
.pillar-item:not(:has(.pillar-icon)) { padding-top: 2.5rem; }

/* Service cards more readable */
.service-name { font-size: 1.5rem; margin-bottom: 1rem; }
.service-desc { font-size: 1rem; line-height: 1.85; }
.service-tag  { font-size: 0.78rem; margin-bottom: 0.7rem; }

/* Post card text bigger */
.post-title { font-size: 1.2rem; line-height: 1.4; }
.post-date  { font-size: 0.78rem; }

/* About stats readable */
.about-stat-label { font-size: 0.9rem; letter-spacing: 0.04em; }
.about-stat-num   { font-size: 3.2rem; }

/* Testimonial bigger */
.testimonial-section blockquote {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.6;
}

/* Footer text readable */
.footer-brand p  { font-size: 0.95rem; line-height: 1.8; }
.footer-col li   { margin-bottom: 0.85rem; }
.footer-col a    { font-size: 0.95rem; }

/* Nav links slightly bigger */
.main-navigation a { font-size: 0.85rem; letter-spacing: 0.1em; }
.site-branding a   { font-size: 1.5rem; }

/* Eyebrow labels bigger */
.section-eyebrow      { font-size: 0.8rem; letter-spacing: 0.22em; }
.section-eyebrow-line { font-size: 0.8rem; }

/* Chips readable */
.chip { font-size: 0.8rem; padding: 0.35rem 0.9rem; }

/* Stat labels */
.stat-label  { font-size: 0.82rem; letter-spacing: 0.06em; }
.stat-number { font-size: 2.8rem; }

/* Product cards */
.product-name { font-size: 1.3rem; }
.product-desc { font-size: 0.95rem; }
.product-price { font-size: 1.5rem; }

/* CTA banner */
.cta-banner h2 { font-size: clamp(2rem, 2.8vw, 2.8rem); }
.cta-banner p  { font-size: 1.1rem; margin-top: 0.9rem; }

/* Intro strip bigger */
.intro-strip-item { font-size: 0.8rem; letter-spacing: 0.22em; }

/* ─── NAV — Book Now CTA button ─── */
.main-navigation .nav-book {
  background: var(--terracotta);
  color: white !important;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.1em;
  transition: all var(--ease);
}
.main-navigation .nav-book:hover {
  background: var(--deep) !important;
  color: white !important;
}

/* ─── Remove emoji from strip (use CSS bullet instead) ─── */
.intro-strip-item::before {
  content: '—';
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ─── Pillar items: left-align text for editorial feel ─── */
.pillars-grid.col-4 .pillar-item {
  text-align: left;
  padding: 3rem 2.2rem;
}
.pillars-grid.col-4 .pillar-item h4::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--terracotta);
  margin-bottom: 1rem;
}

/* ─── Responsive adjustments ─── */
@media (max-width: 1100px) {
  :root { --section-v: 6rem; --section-h: 3rem; }
  h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
  h2 { font-size: clamp(2rem, 4vw, 3rem); }
}
@media (max-width: 768px) {
  :root { --section-v: 4rem; --section-h: 1.5rem; }
  html { font-size: 16px; }
  p { font-size: 1rem; }
}

/* =============================================
   HEY NANGI — ADDITIONS & OVERRIDES
   Merges Lillia single-post layout + social integration
   ============================================= */

/* Nav social icons */
.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-left: 1.5rem;
}
.nav-social a {
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color var(--ease);
}
.nav-social a:hover { color: var(--terracotta); }

/* Footer socials */
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.footer-socials a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(253,248,244,0.5);
  transition: all var(--ease);
}
.footer-socials a:hover { background: var(--terracotta); color: white; }

/* =============================================
   SINGLE POST — LILLIA-INSPIRED LAYOUT
   ============================================= */
.single-post-wrap { padding-top: 72px; }

.single-post-header {
  background: var(--deep);
  padding: 5rem var(--section-h) 4rem;
  position: relative;
  overflow: hidden;
}
.single-post-header::before {
  content: '';
  position: absolute;
  top: -20%; left: -5%;
  width: 50%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,113,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.single-post-header-inner {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.single-post-breadcrumbs {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,248,244,0.38);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.single-post-breadcrumbs a {
  color: rgba(201,169,110,0.8);
  transition: opacity var(--ease);
}
.single-post-breadcrumbs a:hover { opacity: 0.7; }

.single-post-cat {
  display: inline-block;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.5rem;
  transition: background var(--ease);
}
.single-post-cat:hover { background: var(--deep); color: var(--gold); }

.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--cream);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,248,244,0.42);
  flex-wrap: wrap;
}
.single-post-meta .author { color: var(--gold); }
.single-post-meta .sep { opacity: 0.3; }

.single-post-featured {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blush);
}
.single-post-featured img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.single-post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.single-post-content { margin-bottom: 3rem; }
.single-post-content h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.single-post-content h3 { font-size: 1.4rem; margin: 2rem 0 0.8rem; }
.single-post-content p  { font-size: 1.05rem; line-height: 1.95; margin-bottom: 1.6rem; }
.single-post-content ul,
.single-post-content ol { margin: 0 0 1.6rem 1.8rem; }
.single-post-content li { font-size: 1.05rem; line-height: 1.8; margin-bottom: 0.4rem; }
.single-post-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  line-height: 1.55;
  padding: 1.5rem 0 1.5rem 1.8rem;
  border-left: 3px solid var(--terracotta);
  margin: 2.5rem 0;
}
.single-post-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* Social share */
.single-post-social {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(201,169,110,0.2);
}
.single-post-social span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.3rem;
}
.single-post-social a {
  width: 38px;
  height: 38px;
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: all var(--ease);
}
.single-post-social a:hover { background: var(--terracotta); color: white; }

/* Tags */
.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.single-post-tags > span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.tag-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: var(--blush-light);
  color: var(--charcoal);
  transition: background var(--ease);
  display: inline-block;
}
.tag-pill:hover { background: var(--blush); color: var(--deep); }

/* Author box */
.single-author-box {
  background: var(--blush-light);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem 0;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
}
.author-avatar img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; }
.author-info h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.author-info p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* Post Navigation */
.post-navigation {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
}
.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.nav-previous, .nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nav-next { text-align: right; }
.nav-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--deep);
  line-height: 1.4;
  transition: color var(--ease);
}
.nav-title:hover { color: var(--terracotta); }

/* Related posts */
.related-posts {
  margin-top: 3rem;
}
.related-posts h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.related-grid .post-card {
  cursor: pointer;
}

/* =============================================
   BLOG ARCHIVE — LILLIA GRID LAYOUT
   ============================================= */
.blog-archive-wrap {
  padding-top: 72px;
}
.blog-archive-header {
  background: var(--deep);
  padding: 7rem var(--section-h) 4rem;
  position: relative;
  overflow: hidden;
}
.blog-archive-header::after {
  content: '✦';
  position: absolute;
  right: 6rem; bottom: -2rem;
  font-size: 16rem;
  color: rgba(201,169,110,0.06);
  line-height: 1;
  pointer-events: none;
}
.blog-archive-header h1 { color: var(--cream); margin-bottom: 1rem; }
.blog-archive-header h1 em { color: var(--rose); }
.blog-archive-header p { color: rgba(253,248,244,0.58); font-size: 1.05rem; max-width:520px; }

.blog-filter-bar {
  background: var(--warm-white);
  padding: 1.2rem var(--section-h);
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: sticky;
  top: 72px;
  z-index: 100;
}
.blog-filter-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--ease);
  font-family: var(--font-body);
}
.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

.blog-grid-wrap {
  padding: 4rem var(--section-h);
  background: var(--warm-white);
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Post card */
.post-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  border: 1px solid rgba(201,169,110,0.12);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(61,43,43,0.1);
}
.post-card-link { display: block; color: inherit; }
.post-image {
  background: var(--blush);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.post-card:hover .post-image img { transform: scale(1.04); }
.post-image-fallback { font-size: 3rem; color: var(--gold); opacity: 0.4; }
.post-tag {
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  background: var(--terracotta);
  color: white;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  z-index: 1;
}
.post-content { padding: 1.8rem 2rem 2.2rem; }
.post-date {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.6rem;
}
.post-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--deep);
  margin-bottom: 0.8rem;
}
.post-title a { color: inherit; }
.post-title a:hover { color: var(--terracotta); }
.post-excerpt {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.post-read-more {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  display: inline-block;
  transition: all var(--ease);
}
.post-read-more:hover { color: var(--deep); border-color: var(--deep); }

/* Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.15);
}
.blog-pagination .page-numbers {
  display: inline-block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  border: 1px solid rgba(201,169,110,0.25);
  margin: 0 2px;
  transition: all var(--ease);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--terracotta);
  color: white;
  border-color: var(--terracotta);
}

/* =============================================
   SOCIAL FEED SECTION
   ============================================= */
.social-feed-section {
  background: var(--cream);
  padding: var(--section-v) var(--section-h);
  text-align: center;
}
.social-feed-section .section-title { max-width: 560px; margin: 0 auto 1rem; }
.social-feed-section > p { max-width: 480px; margin: 0 auto 3rem; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2rem;
}
.social-item {
  background: var(--blush);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.social-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.social-item:hover img { transform: scale(1.05); }
.social-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,43,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--ease);
  flex-direction: column;
  gap: 0.4rem;
}
.social-item:hover .social-item-overlay { opacity: 1; }
.social-item-overlay i { color: white; font-size: 1.4rem; }
.social-item-overlay span { color: rgba(255,255,255,0.8); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }

.social-follow-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-follow-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(61,43,43,0.2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-family: var(--font-body);
  transition: all var(--ease);
  background: transparent;
  cursor: pointer;
}
.social-follow-btn:hover {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

/* =============================================
   AUTHOR PHOTO — UPLOADABLE PROFILE IMAGE
   ============================================= */
.author-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-avatar-initials {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracotta);
  font-style: italic;
}

/* =============================================
   SINGLE POST SIDEBAR / WIDGETS
   ============================================= */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  max-width: 1160px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.single-post-sidebar {
  padding-top: 0.5rem;
}
.widget {
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  background: var(--warm-white);
}
.widget-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 0;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.widget ul { padding: 1rem 1.5rem; margin: 0; }
.widget ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  font-size: 0.88rem;
  color: var(--charcoal);
  list-style: none;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--charcoal); transition: color var(--ease); }
.widget ul li a:hover { color: var(--terracotta); }
.widget p { padding: 1rem 1.5rem; font-size: 0.88rem; margin: 0; }
.widget .textwidget { padding: 1rem 1.5rem; font-size: 0.88rem; }
.widget-sidebar-cta {
  background: var(--deep);
  padding: 2rem 1.5rem;
  text-align: center;
  border: none;
}
.widget-sidebar-cta h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.widget-sidebar-cta p {
  padding: 0;
  font-size: 0.83rem;
  color: rgba(253,248,244,0.6);
  margin-bottom: 1.2rem;
}
.widget-sidebar-cta .btn { width: 100%; text-align: center; }

.single-post-layout .single-post-body {
  max-width: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1100px) {
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { border-top: 1px solid rgba(201,169,110,0.15); padding-top: 2rem; }
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 1100px) {
  .blog-posts-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .single-post-header { padding: 5rem 1.5rem 3rem; }
  .single-post-body { padding: 3rem 1.5rem 4rem; }
  .blog-posts-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .nav-links { grid-template-columns: 1fr; }
  .nav-next { text-align: left; }
  .single-author-box { grid-template-columns: 1fr; text-align: center; }
  .author-avatar { margin: 0 auto; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-follow-bar { gap: 0.5rem; }
  .nav-social { display: none; }
  .blog-filter-bar { top: 60px; }
}
