/*
Theme Name: Well Made Mom
Theme URI: https://wellmademom.com
Author: Megan Muller
Author URI: https://wellmademom.com
Description: Custom theme for Well Made Mom — real wellness, motherhood, home and style.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: wellmademom
*/

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --rust:       #B85C2C;
  --rust-l:     rgba(184,92,44,0.07);
  --rust-b:     rgba(184,92,44,0.2);
  --olive:      #6B7C3A;
  --olive-l:    rgba(107,124,58,0.07);
  --amber:      #C8861A;
  --teal:       #2E7D72;
  --espresso:   #2C2820;
  --mid:        #7A7470;
  --light:      #B0ABA8;
  --border:     #EDEBE8;
  --bg:         #FFFFFF;
  --bg2:        #FAFAF8;
  --max:        1200px;
  --radius:     12px;
  --transition: 0.25s ease;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--espresso); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.75; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.15;
  color: var(--espresso);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.0625rem; color: var(--mid); line-height: 1.85; margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--espresso); }
em { font-style: italic; }

.eyebrow {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--rust); }

/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 6rem 0; }
.section--alt { background: var(--bg2); }
.section--dark { background: var(--espresso); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn--primary { background: var(--rust); color: #fff; }
.btn--primary:hover { background: var(--espresso); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--espresso); border: 0.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--rust); color: var(--rust); }
.btn--white { background: #fff; color: var(--espresso); }
.btn--white:hover { background: var(--rust); color: #fff; }
.btn--arrow::after { content: '→'; transition: transform var(--transition); }
.btn--arrow:hover::after { transform: translateX(4px); }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.01em;
}
.site-logo span { color: var(--rust); }

.primary-nav { display: flex; align-items: center; gap: 2.5rem; }
.primary-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.primary-nav a:hover { color: var(--rust); }
.primary-nav a.active { color: var(--rust); }

.nav-cta {
  background: var(--espresso);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--rust) !important; color: #fff !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--espresso); transition: all var(--transition); display: block; }

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  animation: fadeUp 0.8s ease both;
}

.hero__title { margin-bottom: 1.25rem; }
.hero__title em { font-style: italic; color: var(--rust); }

.hero__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero__actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.hero__image {
  position: relative;
  background: linear-gradient(145deg, #F5EDE4 0%, #EDE4D8 60%, #E4D8C8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0.6;
}

.hero__monogram {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  border: 0.5px solid rgba(184,92,44,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--rust);
}

.hero__badge {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  border: 0.5px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  animation: fadeUp 1s 0.5s ease both;
}
.hero__badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--rust); line-height: 1;
}
.hero__badge-label { font-size: 0.7rem; color: var(--mid); margin-top: 3px; }

/* ─────────────────────────────────────────
   PILLARS
───────────────────────────────────────── */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.pillar {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  background: var(--bg);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}

.pillar:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }
.pillar:hover::before { opacity: 1; }

.pillar--wellness::before  { background: linear-gradient(135deg, rgba(107,124,58,0.06) 0%, rgba(107,124,58,0.02) 100%); }
.pillar--motherhood::before { background: linear-gradient(135deg, rgba(184,92,44,0.06) 0%, rgba(184,92,44,0.02) 100%); }
.pillar--home::before      { background: linear-gradient(135deg, rgba(46,125,114,0.06) 0%, rgba(46,125,114,0.02) 100%); }
.pillar--style::before     { background: linear-gradient(135deg, rgba(200,134,26,0.06) 0%, rgba(200,134,26,0.02) 100%); }

.pillar__icon { font-size: 1.75rem; margin-bottom: 1rem; position: relative; }
.pillar__name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 400; color: var(--espresso); margin-bottom: 0.5rem; position: relative; }
.pillar__desc { font-size: 0.82rem; color: var(--mid); line-height: 1.65; position: relative; margin-bottom: 0; }
.pillar__link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 1.25rem;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--rust); position: relative;
}
.pillar__link::after { content: '→'; transition: transform var(--transition); }
.pillar:hover .pillar__link::after { transform: translateX(4px); }

/* ─────────────────────────────────────────
   SECTION HEADER
───────────────────────────────────────── */
.section-header { text-align: center; max-width: 600px; margin: 0 auto; }
.section-header h2 { margin-top: 0.5rem; }

/* ─────────────────────────────────────────
   POSTS GRID
───────────────────────────────────────── */
.posts-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.post-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); border-color: transparent; }

.post-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg2);
}
.post-card:first-child .post-card__img { aspect-ratio: 4/3; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card__img img { transform: scale(1.03); }

.post-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-style: italic; color: rgba(255,255,255,0.6);
}
.img--wellness    { background: linear-gradient(135deg, #7D9B5A, #5A7A3A); }
.img--motherhood  { background: linear-gradient(135deg, #C8846A, #A86048); }
.img--home        { background: linear-gradient(135deg, #4A9B8E, #2E7D72); }
.img--style       { background: linear-gradient(135deg, #D4A040, #B88420); }

.post-card__body { padding: 1.5rem; }

.post-cat {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.6rem;
  display: block;
}
.cat--wellness   { color: var(--olive); }
.cat--motherhood { color: var(--rust); }
.cat--home       { color: var(--teal); }
.cat--style      { color: var(--amber); }

.post-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.post-card:first-child .post-card__title { font-size: 1.5rem; }
.post-card:not(:first-child) .post-card__title { font-size: 1.15rem; }

.post-card__excerpt { font-size: 0.82rem; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; }
.post-card:not(:first-child) .post-card__excerpt { display: none; }

.post-card__meta { display: flex; align-items: center; justify-content: space-between; }
.post-card__date { font-size: 0.7rem; color: var(--light); }
.post-card__read { font-size: 0.7rem; color: var(--rust); font-weight: 500; display: flex; align-items: center; gap: 4px; }
.post-card__read::after { content: '→'; }

/* ─────────────────────────────────────────
   ABOUT STRIP
───────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.about-strip__text {
  background: var(--espresso);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-strip__text .eyebrow { color: rgba(255,255,255,0.35); }
.about-strip__text .eyebrow::before { background: rgba(255,255,255,0.35); }

.about-strip__title { color: #fff; margin-bottom: 1.25rem; }
.about-strip__title em { color: var(--rust); font-style: italic; }

.about-strip__body { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 2rem; max-width: 400px; }

.about-strip__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #3A342C, #2C2820);
  display: flex; align-items: center; justify-content: center;
}

.about-strip__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  height: 100%;
}
.about-stat {
  border: 0.5px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 6px;
}
.about-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300; color: var(--rust); line-height: 1;
}
.about-stat__label { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ─────────────────────────────────────────
   EMAIL SIGNUP
───────────────────────────────────────── */
.email-section { text-align: center; padding: 6rem 0; border-top: 0.5px solid var(--border); }
.email-section h2 { margin: 0.5rem auto 0.75rem; max-width: 520px; }
.email-section p { margin-bottom: 2.5rem; }

.email-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  padding: 13px 20px;
  border: 0.5px solid var(--border);
  border-radius: 28px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--espresso);
  background: var(--bg2);
  outline: none;
  transition: border-color var(--transition);
}
.email-form input:focus { border-color: var(--rust); }
.email-form input::placeholder { color: var(--light); }
.email-form button {
  background: var(--rust);
  color: #fff;
  padding: 13px 24px;
  border-radius: 28px;
  font-size: 0.82rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: background var(--transition);
}
.email-form button:hover { background: var(--espresso); }
.email-note { font-size: 0.72rem; color: var(--light); margin-top: 1rem; margin-bottom: 0; }

/* ─────────────────────────────────────────
   SHOP STRIP
───────────────────────────────────────── */
.shop-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 2rem; }
.shop-header h2 { margin: 0; }
.shop-header a { font-size: 0.78rem; font-weight: 500; color: var(--rust); display: flex; align-items: center; gap: 4px; }
.shop-header a::after { content: '→'; }

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

.shop-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.shop-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.07); border-color: transparent; }

.shop-card__img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 2.25rem; }
.shop-img--1 { background: linear-gradient(135deg, #F5EDE4, #EDE4D8); }
.shop-img--2 { background: linear-gradient(135deg, #E8F0E0, #DDEAC8); }
.shop-img--3 { background: linear-gradient(135deg, #E0EDEB, #C8E4E0); }
.shop-img--4 { background: linear-gradient(135deg, #F5F0E4, #EDE8D0); }

.shop-card__body { padding: 1rem 1.1rem; }
.shop-card__name { font-size: 0.88rem; font-weight: 500; color: var(--espresso); margin-bottom: 3px; }
.shop-card__note { font-size: 0.75rem; color: var(--mid); line-height: 1.55; margin-bottom: 8px; }
.shop-card__link { font-size: 0.7rem; font-weight: 500; color: var(--rust); letter-spacing: 0.04em; display: flex; align-items: center; gap: 4px; }
.shop-card__link::after { content: '→'; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer { background: var(--espresso); padding: 5rem 0 2.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: #fff; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 240px; }

.footer-social { display: flex; gap: 8px; margin-top: 1.5rem; }
.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: 14px;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,0.08); color: #fff; }

.footer-col-title { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.22); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─────────────────────────────────────────
   SINGLE POST
───────────────────────────────────────── */
.post-header { padding: 120px 0 4rem; border-bottom: 0.5px solid var(--border); }
.post-header__inner { max-width: 780px; margin: 0 auto; padding: 0 2.5rem; }
.post-header__cat { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-bottom: 1.25rem; display: block; }
.post-header__title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.post-header__sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; font-weight: 300; color: var(--mid); margin-bottom: 2rem; line-height: 1.5; }
.post-header__meta { display: flex; align-items: center; gap: 1.5rem; font-size: 0.78rem; color: var(--mid); }
.post-header__meta-sep { color: var(--border); }

.post-content { max-width: 780px; margin: 0 auto; padding: 3rem 2.5rem 6rem; }
.post-content p { font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
.post-content h2 { font-size: 1.8rem; margin: 3rem 0 0.75rem; }
.post-content h3 { font-size: 1.3rem; font-style: italic; color: var(--rust); margin: 2rem 0 0.5rem; }
.post-content a { color: var(--rust); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.post-content a:hover { opacity: 0.75; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-content li { font-size: 1.05rem; color: var(--mid); line-height: 1.8; margin-bottom: 0.5rem; }
.post-content blockquote { border-left: 3px solid var(--rust); padding: 1rem 1.5rem; margin: 2.5rem 0; background: var(--rust-l); border-radius: 0 8px 8px 0; }
.post-content blockquote p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; font-weight: 300; color: var(--espresso); }

.disclosure-bar { background: rgba(200,134,26,0.07); border: 0.5px solid rgba(200,134,26,0.22); border-radius: 8px; padding: 0.85rem 1.1rem; font-size: 0.78rem; color: var(--mid); margin-bottom: 2.5rem; line-height: 1.6; }

/* ─────────────────────────────────────────
   PRODUCT CARD (in posts)
───────────────────────────────────────── */
.product-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg2);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.product-card__icon { width: 48px; height: 48px; border-radius: 10px; background: var(--bg); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.product-card__info { flex: 1; }
.product-card__name { font-size: 0.92rem; font-weight: 500; color: var(--espresso); margin-bottom: 4px; }
.product-card__desc { font-size: 0.82rem; color: var(--mid); line-height: 1.6; margin-bottom: 10px; }
.product-card__link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; font-weight: 500; color: var(--rust); border: 0.5px solid var(--rust-b); padding: 5px 14px; border-radius: 16px; background: var(--rust-l); transition: all var(--transition); }
.product-card__link:hover { background: var(--rust); color: #fff; }

/* ─────────────────────────────────────────
   AUTHOR BOX
───────────────────────────────────────── */
.author-box { display: flex; gap: 1.25rem; padding: 1.5rem; border: 0.5px solid var(--border); border-radius: var(--radius); background: var(--bg2); margin-top: 3rem; }
.author-box__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--rust-l); border: 0.5px solid var(--rust-b); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 300; color: var(--rust); flex-shrink: 0; overflow: hidden; }
.author-box__avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box__name { font-size: 0.9rem; font-weight: 500; color: var(--espresso); margin-bottom: 3px; }
.author-box__bio { font-size: 0.8rem; color: var(--mid); line-height: 1.6; margin-bottom: 0; }

/* ─────────────────────────────────────────
   PAGE TEMPLATES
───────────────────────────────────────── */
.page-header { padding: 130px 0 4rem; background: var(--bg2); border-bottom: 0.5px solid var(--border); }
.page-header h1 { margin-bottom: 0.75rem; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 1.75rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__text { padding: 4rem 2rem 3rem; }
  .hero__image { min-height: 440px; }
  .pillars__grid { grid-template-columns: 1fr 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip__text { padding: 3.5rem 2rem; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 640px) {
  .primary-nav { display: none; }
  .primary-nav.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #fff; padding: 2rem; border-bottom: 0.5px solid var(--border); gap: 1.25rem; align-items: flex-start; }
  .hamburger { display: flex; }
  .pillars__grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .hero__badge { display: none; }
  .posts-grid { gap: 1rem; }
}
