/*
Theme Name: Mayur Metals
Theme URI: https://mayurmetals.com
Author: Antigravity
Description: Industrial theme for Mayur Metals raw material supplier.
Version: 2.1.0
License: GNU General Public License v2 or later
Text Domain: mayur-metals
*/

/* ─── VARIABLES ──────────────────────────────────────────────────────────── */
:root {
  --orange:        #E85D1A;
  --orange-dark:   #C44810;
  --orange-glow:   rgba(232,93,26,0.12);
  --orange-border: rgba(232,93,26,0.25);
  --ink:           #1A1208;
  --ink-mid:       #3D2B10;
  --body-text:     #4A3B28;
  --muted:         #8A7560;
  --cream:         #FBF7F2;
  --cream-dark:    #F0E8DC;
  --border:        #DDD0BC;
  --white:         #FFFFFF;
  --radius:        0.75rem;
  --radius-lg:     1.5rem;
  --shadow-sm:     0 2px 8px rgba(26,18,8,0.07);
  --shadow-md:     0 8px 32px rgba(26,18,8,0.12);
  --shadow-lg:     0 20px 60px rgba(26,18,8,0.18);
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --nav-h:         4.5rem;
  --ease:          cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--body-text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── LAYOUT ─────────────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .wrap { padding: 0 2rem; } }
@media (min-width: 1280px) { .wrap { padding: 0 1.5rem; } }

.section    { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
@media (min-width: 768px) { .section { padding: 5.5rem 0; } }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p  { color: var(--body-text); }

/* ─── ═══════════════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251,247,242,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo-mark {
  width: 2.6rem;
  height: 2.6rem;
  min-width: 2.6rem;
  background: var(--orange);
  border-radius: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  letter-spacing: -0.5px;
}
.logo-text  { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-name  { font-family: var(--font-display); font-weight: 800; font-size: clamp(0.85rem,2.5vw,1.1rem); color: var(--ink); letter-spacing: 0.02em; white-space: nowrap; }
.logo-sub   { font-size: 0.62rem; color: var(--muted); font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; }
.custom-logo-link img { max-height: 3rem; width: auto; }

/* Desktop Nav — hidden below 900px */
.primary-nav { display: none; }
@media (min-width: 900px) {
  .primary-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
}

.nav-list { list-style: none; display: flex; align-items: center; gap: 0.15rem; }
.nav-list li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--body-text);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-list li a:hover,
.nav-list li.current-menu-item > a,
.nav-list li.current_page_item > a,
.nav-list li.active > a {
  color: var(--orange);
  background: var(--orange-glow);
}

/* Header CTA (desktop) */
.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (min-width: 560px) { .header-cta { display: flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 0.45rem;
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }

/* Mobile Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 199;
  overflow-y: auto;
  padding: 1.5rem 1.25rem;
  border-top: 2px solid var(--border);
  animation: slideDown 0.22s var(--ease);
}
.mobile-nav.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
}
.mobile-nav .nav-list li a {
  padding: 0.875rem 1rem;
  font-size: 1.05rem;
  border-radius: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .nav-list li:last-child a { border-bottom: none; }

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-cta .btn { justify-content: center; padding: 0.875rem; font-size: 0.95rem; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,26,0.35); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-glow); }
.btn-ghost   { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-lg { padding: 0.825rem 1.75rem; font-size: 1rem; border-radius: var(--radius-lg); }

/* ─── ═══════════════════════════════════════════════════════════════════════
   HERO — FULL BLEED WITH SLIDESHOW
   ═══════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .hero { min-height: 620px; } }

/* Slideshow track */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center; /* always crop to center */
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* Dark overlay so text is always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,18,8,0.72) 0%,
    rgba(26,18,8,0.45) 55%,
    rgba(26,18,8,0.25) 100%
  );
  z-index: 1;
}

/* Fallback gradient when no images uploaded */
.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 60%, #E8DDD0 100%);
  z-index: 0;
}

/* Hero content — sits above overlay */
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0 3.5rem;
}

.hero-content { max-width: 740px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(255,255,255,0.18);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
/* Fallback badge (no image) */
.hero--no-image .hero-badge {
  background: var(--orange-glow);
  color: var(--orange);
  border-color: var(--orange-border);
}

.hero h1 { color: white; margin-bottom: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero--no-image h1 { color: var(--ink); text-shadow: none; }

.hero-highlight { color: var(--orange); }
.hero--no-image .hero-highlight { color: var(--orange); }

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero--no-image p { color: var(--muted); }

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

/* Slide indicators */
.hero-dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.4);
  border: none;
  padding: 0;
  transition: all 0.3s;
  cursor: pointer;
}
.hero-dot.active { width: 28px; background: var(--orange); }
.hero--no-image .hero-dot { background: var(--border); }
.hero--no-image .hero-dot.active { background: var(--orange); }

/* ─── STATS BAR ──────────────────────────────────────────────────────────── */
.stats-bar { background: var(--orange); padding: 2.5rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 600px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem,5vw,2.75rem); font-weight: 800; color: white; line-height: 1; margin-bottom: 0.25rem; }
.stat-label  { font-size: 0.75rem; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── SECTION HEADER ─────────────────────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.section-header h2   { margin-bottom: 0.75rem; }
.section-header p    { color: var(--muted); max-width: 520px; font-size: 1.05rem; }

/* ─── CARDS ──────────────────────────────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--orange-border); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon { width: 2.75rem; height: 2.75rem; background: var(--orange-glow); border-radius: 0.6rem; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.1rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p  { font-size: 0.9rem; color: var(--muted); }

/* ─── GRIDS ──────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 600px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* ─── PRODUCT CARDS ──────────────────────────────────────────────────────── */
.product-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s; }
.product-card:hover { border-color: var(--orange); box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.product-card-header {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  /* Image thumbnail */
}
.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.product-card-header::after { content:''; position:absolute; bottom:-20px;right:-20px;width:70px;height:70px;background:rgba(232,93,26,0.12);border-radius:50%; }
.product-number { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.07); line-height: 1; position: absolute; top: 0.5rem; right: 0.875rem; }
.product-icon   { font-size: 1.75rem; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.product-card-header h3 { color: white; font-size: 1.35rem; position: relative; z-index: 1; }

.product-card-body { padding: 1.5rem; }
.product-card-body p { font-size: 0.875rem; margin-bottom: 1.1rem; color: var(--muted); }
.product-features { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.product-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--body-text); }
.product-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ─── WHY CARDS ──────────────────────────────────────────────────────────── */
.why-card { display: flex; gap: 1.1rem; padding: 1.5rem; background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color 0.25s, box-shadow 0.25s; }
.why-card:hover { border-color: var(--orange-border); box-shadow: var(--shadow-md); }
.why-icon { width: 2.6rem; height: 2.6rem; min-width: 2.6rem; background: var(--orange-glow); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.why-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.why-card p  { font-size: 0.85rem; color: var(--muted); }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.big-number {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-number::before { content:''; position:absolute; top:-30%;right:-20%;width:60%;height:60%;background:radial-gradient(circle,rgba(232,93,26,0.25) 0%,transparent 70%); }
.big-number-value { font-family: var(--font-display); font-size: clamp(4rem,10vw,5.5rem); font-weight: 800; color: var(--orange); line-height: 1; position: relative; }
.big-number-label { color: rgba(255,255,255,0.65); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-top: 0.5rem; position: relative; }

.mission-box { background: var(--ink); border-radius: var(--radius-lg); padding: clamp(2rem,5vw,4rem); text-align: center; position: relative; overflow: hidden; }
.mission-box::before { content:'"'; position:absolute; top:-1rem;left:1.5rem;font-family:var(--font-display);font-size:10rem;color:rgba(232,93,26,0.08);line-height:1;pointer-events:none; }
.mission-text { font-family: var(--font-display); font-size: clamp(1.15rem,3vw,1.9rem); font-weight: 600; color: white; line-height: 1.45; max-width: 800px; margin: 0 auto; position: relative; }

/* ─── CONTACT ────────────────────────────────────────────────────────────── */
.contact-detail-card { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.25rem; background: white; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.875rem; transition: border-color 0.25s, box-shadow 0.2s; }
.contact-detail-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.contact-icon { width: 2.6rem; height: 2.6rem; min-width: 2.6rem; background: var(--orange-glow); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-detail-card strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.2rem; }
.contact-detail-card span { font-weight: 500; color: var(--ink); font-size: 0.9rem; }

.contact-form-card { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.5rem); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--ink); margin-bottom: 0.35rem; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none; -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(232,93,26,0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; } }
.form-notice { padding: 0.875rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.25rem; font-size: 0.875rem; font-weight: 500; }
.form-notice.success { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.form-notice.error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero { background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%); padding: clamp(3rem,7vw,5rem) 0 clamp(2.5rem,5vw,3.5rem); border-bottom: 1px solid var(--border); }
.page-hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.8rem; background: var(--orange-glow); color: var(--orange); border: 1px solid var(--orange-border); border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.page-hero h1 { margin-bottom: 0.875rem; }
.page-hero p  { color: var(--muted); font-size: clamp(1rem,2.5vw,1.1rem); max-width: 600px; }

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); padding: clamp(3.5rem,8vw,5.5rem) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content:''; position:absolute; top:-50%;left:-10%;width:50%;height:200%;background:rgba(255,255,255,0.05);transform:rotate(-15deg); }
.cta-section h2 { color: white; font-size: clamp(1.75rem,5vw,3.25rem); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 2.25rem; font-size: 1.02rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #C5B49A; padding: 4rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.75rem; }
@media (min-width: 480px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }

.footer-brand p { margin-top: 0.875rem; font-size: 0.85rem; line-height: 1.65; color: #7A6A56; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub  { color: #5A4A38; }

.footer-col h4 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: #7A6A56; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: #7A6A56; }
.footer-contact .fi { flex-shrink: 0; margin-top: 0.1rem; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.78rem; color: #4A3A28; }

/* ─── UTILITY ────────────────────────────────────────────────────────────── */
.bg-white     { background: white; }
.bg-cream-dark{ background: var(--cream-dark); }
.text-center  { text-align: center; }
.text-orange  { color: var(--orange); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.animate-fade-up { animation: fadeUp 0.5s ease-out both; }

/* ─── WP CONTENT ─────────────────────────────────────────────────────────── */
.entry-content h2 { margin: 2.25rem 0 0.875rem; }
.entry-content h3 { margin: 1.75rem 0 0.625rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul,
.entry-content ol { margin: 0.875rem 0 1.25rem 1.5rem; }
.entry-content li { margin-bottom: 0.375rem; }
.entry-content img { border-radius: var(--radius); margin: 1.75rem 0; }

/* ─── WP NAV MENU OVERRIDES ──────────────────────────────────────────────── */
.nav-list .menu-item a,
.nav-list .page_item a { /* matches WP generated class */ }
