/* ============================================
   KALA JOHARE — Luxury Jewellery Blog
   Primary CSS | Luxury Indian Aesthetic
   ============================================ */

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

/* ── DESIGN TOKENS ─────────────────────────── */
:root {
  --gold:          #C9A24B;
  --gold-light:    #E8C97A;
  --gold-dark:     #8B6914;
  --ivory:         #FAF6EF;
  --ivory-dark:    #F0E8D8;
  --cream:         #EDE0C8;
  --charcoal:      #1A1610;
  --charcoal-mid:  #2D2618;
  --warm-brown:    #5C3D1E;
  --text-primary:  #1A1610;
  --text-secondary:#5A4E3A;
  --text-muted:    #8C7B63;
  --brand-maroon:  #6a1b29;
  --border:        rgba(201,162,75,0.25);
  --border-hover:  rgba(201,162,75,0.6);
  --shadow-soft:   0 4px 24px rgba(26,22,16,0.08);
  --shadow-gold:   0 8px 32px rgba(201,162,75,0.18);
  --shadow-deep:   0 16px 48px rgba(26,22,16,0.14);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-pill:   100px;
  --font-serif:    'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:     'Jost', 'Segoe UI', sans-serif;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:     1200px;
}

/* ── RESET & BASE ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--ivory);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--gold); }

/* ── TYPOGRAPHY ────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  line-height: 1.25;
  font-weight: 600;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }

p { margin-bottom: 1.25em; color: var(--text-secondary); }

.lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-family: var(--font-serif);
  font-weight: 400;
}

/* ── LAYOUT ────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-sm { padding: clamp(2rem, 5vw, 3.5rem) 0; }

/* ── DECORATIVE ORNAMENT ───────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ornament-text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ── TOP BAR ───────────────────────────────── */
.topbar {
  background: var(--charcoal);
  color: var(--ivory-dark);
  padding: 0.55rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.topbar a {
  color: var(--gold-light);
  font-weight: 500;
}

/* ── HEADER / NAV ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,239,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-soft); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Cinzel', var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  font-family: 'Cinzel', var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-maroon);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px; left: 0.85rem; right: 0.85rem;
  height: 1px;
  background: var(--brand-maroon);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.nav-link:hover { color: var(--brand-maroon); opacity: 0.8; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--brand-maroon); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--charcoal) !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--gold-dark);
  color: var(--ivory) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ── HAMBURGER ─────────────────────────────── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--ivory);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--gold-light);
}

.btn-dark:hover {
  background: var(--charcoal-mid);
  box-shadow: var(--shadow-deep);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 0.88rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.75rem; }

/* ── HERO SECTION ──────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(420px, 70vh, 680px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1610 0%, #2D2618 50%, #1A1610 100%);
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,162,75,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,162,75,0.08) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A24B' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201,162,75,0.15);
  border: 1px solid rgba(201,162,75,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--ivory);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero .lead {
  color: rgba(250,246,239,0.75);
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(250,246,239,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeInUp 1s 0.5s backwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,162,75,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── PAGE HERO (INNER PAGES) ───────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A24B' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  text-align: center;
}

.page-hero h1 { color: var(--ivory); }
.page-hero .lead { color: rgba(250,246,239,0.7); margin: 1rem auto 0; }
.page-hero .ornament-text { color: var(--gold-light); }
.page-hero .ornament::before,
.page-hero .ornament::after { background: rgba(201,162,75,0.3); }

/* ── BREADCRUMB ────────────────────────────── */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-muted); }

/* ── SECTION HEADER ────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

/* ── CARD ──────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--border-hover);
}

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img { transform: scale(1.04); }

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.card-body { padding: 1.5rem; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.card-body p { font-size: 0.92rem; line-height: 1.65; margin-bottom: 1rem; }

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.read-more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.read-more:hover { gap: 0.7rem; color: var(--gold); }

.read-more svg { width: 14px; height: 14px; }

/* ── GRID LAYOUTS ──────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── FEATURED SECTION ──────────────────────── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow var(--transition);
}

.featured-post:hover { box-shadow: var(--shadow-deep); }

.featured-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.featured-body {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-body h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 1rem; }

/* ── CATEGORY GRID ─────────────────────────── */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
}

.cat-card:hover { transform: translateY(-4px); }

.cat-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: opacity var(--transition), transform 0.6s ease;
}

.cat-card:hover .cat-bg { opacity: 0.4; transform: scale(1.05); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,16,0.85) 0%, transparent 60%);
}

.cat-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.cat-body h3 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.cat-body p {
  color: rgba(250,246,239,0.7);
  font-size: 0.82rem;
  margin: 0;
}

/* ── TESTIMONIALS ──────────────────────────── */
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--ivory);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(250,246,239,0.85);
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FAQ ───────────────────────────────────── */
.faq-list { list-style: none; display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
}

.faq-item:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.faq-item:last-child { border-radius: 0 0 var(--radius-md) var(--radius-md); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold-dark);
  transition: background var(--transition), transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p { font-size: 0.95rem; color: var(--text-secondary); margin: 0; }

/* ── BLOG POST CONTENT ─────────────────────── */
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.post-content h2 {
  font-size: 1.9rem;
  margin: 2.5rem 0 1rem;
  color: var(--charcoal);
}

.post-content h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--charcoal);
}

.post-content p { margin-bottom: 1.4em; }

.post-content ul, .post-content ol {
  margin: 1.25em 0 1.25em 1.75em;
}

.post-content li { margin-bottom: 0.5em; }

.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--warm-brown);
}

.post-content a { color: var(--gold-dark); font-weight: 500; }
.post-content a:hover { color: var(--gold); }

.post-content strong { color: var(--charcoal); font-weight: 600; }

/* ── CTA BLOCK ─────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,162,75,0.1) 0%, transparent 60%);
}

.cta-block h2, .cta-block h3 { color: var(--ivory); }

.cta-block p { color: rgba(250,246,239,0.7); max-width: 500px; margin: 0.75rem auto 1.75rem; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── INLINE CTA (in blog posts) ───────────── */
.inline-cta {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory-dark) 100%);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
}

.inline-cta h4 { color: var(--charcoal); margin-bottom: 0.5rem; }
.inline-cta p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 1rem; }

/* ── SIDEBAR ───────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.sidebar-widget-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sidebar-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition), gap var(--transition);
}

.sidebar-links a::before {
  content: '◆';
  font-size: 0.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.sidebar-links a:hover { color: var(--gold-dark); gap: 0.75rem; }

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { color: var(--ivory); }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.6);
  margin-top: 0.4rem;
}

/* ── TAG/BADGE ─────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--warm-brown);
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}

.tag:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ── PAGINATION ────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}

.page-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: #fff;
  transition: all var(--transition);
  text-decoration: none;
}

.page-link:hover, .page-link.active {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

/* ── WHATSAPP FLOAT ────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(250,246,239,0.7);
  padding: clamp(3rem, 7vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,162,75,0.15);
}

.footer-brand .logo-name { color: var(--ivory); font-size: 1.7rem; }
.footer-brand .logo-tagline { color: var(--gold); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 1.25rem 0;
  color: rgba(250,246,239,0.6);
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.6);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250,246,239,0.4);
}

.footer-bottom a { color: rgba(250,246,239,0.5); }
.footer-bottom a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,162,75,0.12);
  border: 1px solid rgba(201,162,75,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.8); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

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

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }

/* ── UTILITIES ─────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-muted { color: var(--text-muted); }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--charcoal); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* Image placeholder shimmer */
.img-placeholder {
  background: linear-gradient(90deg, var(--cream) 25%, var(--ivory-dark) 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0 0.5rem;
    gap: 0.75rem;
  }
  .site-logo {
    margin-bottom: 0.25rem;
  }
  .site-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PRINT ─────────────────────────────────── */
@media print {
  .site-header, .site-footer, .whatsapp-float { display: none; }
  body { font-size: 12pt; }
}
