/* ============================================================
   5AM MAMA — Main Stylesheet
   Design tokens, layout, components, page-specific styles
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ── Design Tokens ── */
:root {
  --cream:       #FDFAF5;
  --cream-dark:  #F5EFE3;
  --amber:       #D4A847;
  --amber-light: #F0CC78;
  --amber-pale:  #FDF3DC;
  --blush:       #F2D5C4;
  --blush-pale:  #FBF0EA;
  --charcoal:    #1C1C1C;
  --ink:         #3A3630;
  --muted:       #7A7060;
  --border:      #E8E0D0;
  --white:       #FFFFFF;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 8px rgba(28,28,28,0.07);
  --shadow-md:   0 6px 24px rgba(28,28,28,0.10);
  --shadow-lg:   0 16px 48px rgba(28,28,28,0.12);

  --max-width:   1140px;
  --gap:         clamp(1.5rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.05rem; color: var(--ink); margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.6rem;
}

/* ── Layout Helpers ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.section    { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-sm { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ── Grid Helpers ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212,168,71,0.35);
}
.btn-primary:hover {
  background: #C49830;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,168,71,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.btn-sm { padding: 0.6rem 1.3rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,245,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.18s, background 0.18s;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
  background: var(--amber-pale);
}
.nav-cta { margin-left: 0.75rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--blush-pale) 0%, var(--amber-pale) 60%, var(--cream) 100%);
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,71,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-pale);
  border: 1px solid rgba(212,168,71,0.3);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-badge-icon {
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero { text-align: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
}

/* ── Email Opt-in Strip ── */
.optin-strip {
  background: var(--charcoal);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.optin-strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  justify-content: space-between;
}
.optin-strip-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.optin-strip-text p  { color: rgba(255,255,255,0.7); margin: 0; font-size: 1rem; }
.optin-form {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.optin-form input[type="email"] {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  width: 280px;
  outline: none;
  transition: border-color 0.2s;
}
.optin-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.optin-form input[type="email"]:focus { border-color: var(--amber); }
.optin-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .optin-strip-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
  .optin-form { flex-direction: column; align-items: stretch; width: 100%; max-width: 400px; }
  .optin-form input[type="email"] { width: 100%; }
}

/* ── Section Headers ── */
.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 0.6rem; }
.section-header p { color: var(--muted); max-width: 560px; font-size: 1.05rem; }
.section-header.centered p { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 1.4rem 1.5rem 1.6rem; }
.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
  display: block;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.card-excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.6rem; }

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.04); }
.product-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-card-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}
.product-card-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-card-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* ── Activity Card ── */
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.activity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.activity-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.35s;
}
.activity-card:hover .activity-card-img { transform: scale(1.03); }
.activity-img-wrap { overflow: hidden; }
.activity-card-body { padding: 1.2rem 1.3rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.activity-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.activity-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--cream-dark);
  color: var(--muted);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}
.activity-pill.age { background: var(--amber-pale); color: var(--amber); }

/* ── About / Founder Block ── */
.founder-strip {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
}
.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.founder-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-content h2 { margin-bottom: 0.75rem; }
.founder-content p  { color: var(--muted); margin-bottom: 1.25rem; }
@media (max-width: 768px) {
  .founder-strip { grid-template-columns: 1fr; }
  .founder-img { height: 280px; min-height: unset; }
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.stat-value {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ── Pillar Nav Blocks ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.pillar-block:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--amber);
}
.pillar-icon {
  font-size: 2.5rem;
  line-height: 1;
}
.pillar-block h3 { font-size: 1.3rem; margin: 0; }
.pillar-block p  { font-size: 0.9rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) {
  .pillar-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── Instagram Feed ── */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  position: relative;
}
.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.ig-cell:hover img { transform: scale(1.05); }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}
.ig-cell:hover .ig-overlay { background: rgba(28,28,28,0.35); }
.ig-overlay svg { opacity: 0; transition: opacity 0.25s; fill: white; }
.ig-cell:hover .ig-overlay svg { opacity: 1; }
@media (max-width: 600px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Brand Logo Row ── */
.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.brand-logos img {
  height: 36px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.2s;
}
.brand-logos img:hover { filter: grayscale(0) opacity(1); }

/* ── Collab Service Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
}
.service-card-icon { font-size: 2rem; margin-bottom: 1rem; line-height: 1; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card ul { display: flex; flex-direction: column; gap: 0.4rem; }
.service-card li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.8rem;
}
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; } }

/* ── Contact / Inquiry Form ── */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--amber); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── Blog Post Layout ── */
.post-header {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  background: linear-gradient(180deg, var(--amber-pale) 0%, var(--cream) 100%);
}
.post-header-inner { max-width: 780px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.post-meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
}
.post-meta-date { font-size: 0.85rem; color: var(--muted); }
.post-header h1 { margin-bottom: 1rem; }
.post-header-subtitle { font-size: 1.1rem; color: var(--muted); max-width: 600px; }
.post-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 2rem 0 4rem;
}
.post-body { max-width: 100%; }
.post-body p    { font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.4rem; color: var(--ink); }
.post-body h2   { font-size: 1.65rem; margin: 2.5rem 0 1rem; }
.post-body h3   { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-body li   { font-size: 1.05rem; line-height: 1.7; margin-bottom: 0.4rem; color: var(--ink); }
.post-body blockquote {
  border-left: 4px solid var(--amber);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--amber-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 1.1rem;
}
.post-body .affiliate-note {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border);
  margin-bottom: 1.5rem;
}
.post-sidebar { position: sticky; top: 90px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { margin-bottom: 1rem; font-size: 1rem; }
.product-mini {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.product-mini:last-child { border-bottom: none; padding-bottom: 0; }
.product-mini img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.product-mini-info { flex: 1; }
.product-mini-name { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.2rem; line-height: 1.3; }
.product-mini-link { font-size: 0.78rem; font-weight: 600; color: var(--amber); }
@media (max-width: 860px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
}

/* ── Disclosure / Legal ── */
.disclosure {
  font-size: 0.82rem;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--amber-light);
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ── Category Filter Tabs ── */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.18s;
}
.filter-tab:hover, .filter-tab.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--white);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--amber-pale) 0%, var(--blush-pale) 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { font-size: 1.1rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ── Testimonial ── */
.testimonial-block {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--white);
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.92);
}
.testimonial-author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--amber-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Footer ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0.75rem 0 1.25rem;
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--amber); }
.footer-social img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
}
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links a:hover { color: var(--amber-light); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Inline Opt-in (within posts/sections) ── */
.inline-optin {
  background: linear-gradient(135deg, var(--amber-pale), var(--blush-pale));
  border: 1px solid rgba(212,168,71,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
.inline-optin h3 { margin-bottom: 0.5rem; }
.inline-optin p  { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.inline-optin .optin-form {
  justify-content: center;
  flex-wrap: wrap;
}
.inline-optin .optin-form input[type="email"] {
  background: var(--white);
  border-color: var(--border);
  color: var(--ink);
  max-width: 300px;
}
.inline-optin .optin-form input::placeholder { color: var(--muted); }
.inline-optin .optin-note { color: var(--muted); }

/* ── Utility ── */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── Success / Error Messages ── */
.form-success {
  background: #EDFAF0;
  border: 1px solid #8FD9A8;
  color: #1A5C33;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
}
.form-error {
  background: #FEF0F0;
  border: 1px solid #F5BCBC;
  color: #8C1515;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  margin-top: 1rem;
  display: none;
}

/* ── Page-specific: Shop ── */
.shop-hero-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.shop-section-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.shop-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 1.4em;
  background: var(--amber);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Page-specific: Work With Me ── */
.wwm-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2E2926 100%);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.wwm-hero h1 { color: var(--white); }
.wwm-hero .hero-subtitle { color: rgba(255,255,255,0.7); }
.wwm-hero .eyebrow { color: var(--amber-light); }

/* ── Sticky header scroll behavior ── */
.site-header.scrolled { box-shadow: var(--shadow-sm); }
