/* ============================================================
   NickBloom — Main Stylesheet
   ============================================================ */

/* ── GOOGLE FONTS imported via functions.php enqueue ──────── */

:root {
  --rose: #f4a7b9;
  --rose-light: #fde8ee;
  --rose-dark: #e8789a;
  --lilac: #c9b1e8;
  --lilac-light: #ede6f9;
  --mint: #a8d8c8;
  --mint-light: #e0f4ef;
  --peach: #f7c59f;
  --peach-light: #fef2e7;
  --cream: #fdf8f4;
  --text-dark: #3d2b3d;
  --text-mid: #7a5e7a;
  --text-soft: #b09ab0;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(244,167,185,0.18);
  --shadow-hover: 0 16px 48px rgba(244,167,185,0.32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── WORDPRESS CORE RESETS ──────────────────────────────── */
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── NAVBAR ─────────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--rose-light);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--rose-dark);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--lilac); }

/* Primary Navigation */
#primary-navigation ul {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
#primary-navigation ul li a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
#primary-navigation ul li a:hover { color: var(--rose-dark); }

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(244,167,185,0.5); transform: translateY(-1px); }

.hamburger {
  display: none; cursor: pointer; font-size: 1.5rem; color: var(--rose-dark);
  background: none; border: none;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--rose-light) 0%, var(--lilac-light) 50%, var(--mint-light) 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.blob1 { width: 500px; height: 500px; background: var(--rose); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.blob2 { width: 350px; height: 350px; background: var(--lilac); bottom: -80px; left: -80px; animation: float 10s ease-in-out infinite reverse; }
.blob3 { width: 250px; height: 250px; background: var(--peach); bottom: 100px; right: 200px; animation: float 6s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.04); }
}

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(244,167,185,0.25);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title em { color: var(--rose-dark); font-style: italic; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--rose-dark), #d45f7e);
  color: var(--white);
  padding: 14px 30px;
  border: none; border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(232,120,154,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(232,120,154,0.55); color: var(--white); }

.btn-secondary {
  background: var(--white);
  color: var(--rose-dark);
  padding: 14px 30px;
  border: 2px solid var(--rose);
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--rose-light); transform: translateY(-2px); color: var(--rose-dark); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--rose-dark);
}
.stat-label { font-size: 0.8rem; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: min(420px, 40vw);
  z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
}

.hero-card {
  background: white;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 12px 40px rgba(244,167,185,0.3);
}
.hero-card-label {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: #b09ab0; margin-bottom: 6px;
}
.hero-card-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #3d2b3d;
}
.hero-card-1 { transform: rotate(-3deg); animation: float 5s ease-in-out infinite; }
.hero-card-2 {
  background: linear-gradient(135deg, #fde8ee, #ede6f9);
  box-shadow: 0 8px 28px rgba(201,177,232,0.3);
  transform: rotate(2deg); margin-left: 30px;
  animation: float 7s ease-in-out infinite 1s;
}
.hero-card-3 {
  box-shadow: 0 12px 40px rgba(168,216,200,0.3);
  transform: rotate(-1deg);
  animation: float 6s ease-in-out infinite 0.5s;
}

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 1rem;
  margin-bottom: 48px;
}

/* ── TOOL SECTION ────────────────────────────────────────── */
.tool-section {
  padding: 80px 5%;
  background: var(--white);
}

.tool-card {
  max-width: 780px; margin: 0 auto;
  background: linear-gradient(135deg, var(--rose-light), var(--lilac-light));
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--rose);
  border-radius: 50%; opacity: 0.12;
}

.tool-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px;
}
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-group.full { grid-column: 1 / -1; }

.field-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.field-input {
  padding: 13px 18px;
  border: 2px solid var(--rose-light);
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.field-input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(244,167,185,0.2); }

.pills-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.pill {
  padding: 6px 16px;
  border-radius: 50px;
  border: 2px solid var(--rose);
  background: var(--white);
  color: var(--rose-dark);
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.pill:hover, .pill.active { background: var(--rose); color: var(--white); border-color: var(--rose); }
.pill.lilac { border-color: var(--lilac); color: #7c5cbf; }
.pill.lilac:hover, .pill.lilac.active { background: var(--lilac); color: var(--white); border-color: var(--lilac); }
.pill.mint { border-color: var(--mint); color: #3d8e76; }
.pill.mint:hover, .pill.mint.active { background: var(--mint); color: var(--white); border-color: var(--mint); }

.generate-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--rose-dark), #c4578a);
  color: var(--white);
  border: none; border-radius: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(232,120,154,0.4);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.generate-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,120,154,0.55); }

/* Results */
.results-area { margin-top: 36px; display: none; }
.results-area.visible { display: block; }

.results-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text-dark);
  text-align: center; margin-bottom: 20px;
}

.nicknames-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}

.nickname-chip {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  position: relative;
}
.nickname-chip:hover { border-color: var(--rose); box-shadow: 0 4px 16px rgba(244,167,185,0.3); transform: translateY(-2px); }
.nickname-chip.copied { border-color: var(--mint); background: var(--mint-light); }

.chip-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); font-weight: 600; }
.chip-type { font-size: 0.72rem; color: var(--text-soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-top: 4px; }
.chip-copy { position: absolute; top: 8px; right: 10px; font-size: 0.7rem; opacity: 0; transition: opacity 0.2s; }
.nickname-chip:hover .chip-copy { opacity: 1; }

.results-actions {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px; flex-wrap: wrap;
}

/* ── FEATURES ────────────────────────────────────────────── */
.features-section {
  padding: 80px 5%;
  background: var(--cream);
}

.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border-radius: 22px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--rose-light); }

.feature-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 18px;
}
.icon-rose { background: var(--rose-light); }
.icon-lilac { background: var(--lilac-light); }
.icon-mint { background: var(--mint-light); }
.icon-peach { background: var(--peach-light); }

.feature-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 10px; color: var(--text-dark); }
.feature-desc { font-size: 0.88rem; color: var(--text-soft); line-height: 1.7; }

/* ── CATEGORIES ──────────────────────────────────────────── */
.categories-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--lilac-light), var(--rose-light));
}

.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}

.cat-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none; color: inherit;
  display: block;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.cat-emoji { font-size: 2.2rem; margin-bottom: 12px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 6px; }
.cat-count { font-size: 0.78rem; color: var(--text-soft); font-weight: 600; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-section {
  padding: 80px 5%;
  background: var(--white);
}

.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.about-text .section-title,
.about-text .section-label { text-align: left; }

.about-para { color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; font-size: 0.97rem; }

.about-checklist { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-mid);
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--mint-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0; margin-top: 1px;
}

.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.mini-card {
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
}
.mini-card:nth-child(1) { background: var(--rose-light); }
.mini-card:nth-child(2) { background: var(--lilac-light); margin-top: 28px; }
.mini-card:nth-child(3) { background: var(--mint-light); margin-top: -14px; }
.mini-card:nth-child(4) { background: var(--peach-light); margin-top: 14px; }
.mini-card-icon { font-size: 2rem; margin-bottom: 8px; }
.mini-card-label { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--text-dark); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-section {
  padding: 80px 5%;
  background: var(--cream);
}

.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px;
  max-width: 1100px; margin: 0 auto;
}

.blog-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.blog-thumb {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.thumb-rose { background: linear-gradient(135deg, var(--rose-light), var(--peach-light)); }
.thumb-lilac { background: linear-gradient(135deg, var(--lilac-light), var(--rose-light)); }
.thumb-mint { background: linear-gradient(135deg, var(--mint-light), var(--lilac-light)); }

.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.tag-rose { background: var(--rose-light); color: var(--rose-dark); }
.tag-lilac { background: var(--lilac-light); color: #7c5cbf; }
.tag-mint { background: var(--mint-light); color: #3d8e76; }

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem; color: var(--text-dark);
  margin-bottom: 10px; line-height: 1.4;
}
.blog-excerpt { font-size: 0.85rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 16px; }

.blog-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; color: var(--text-soft);
}
.blog-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: white; font-weight: 700;
}
.blog-read-more {
  color: var(--rose-dark); font-weight: 700; font-size: 0.8rem;
  display: flex; align-items: center; gap: 4px; margin-top: 14px;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-section {
  padding: 80px 5%;
  background: var(--white);
}

.steps-row {
  display: flex; gap: 0; max-width: 900px; margin: 0 auto;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--lilac), var(--mint));
  z-index: 0;
}

.step {
  flex: 1; text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(244,167,185,0.4);
}
.step-num.s1 { background: linear-gradient(135deg, var(--rose-dark), var(--rose)); }
.step-num.s2 { background: linear-gradient(135deg, var(--lilac), #a07dd8); }
.step-num.s3 { background: linear-gradient(135deg, var(--mint), #5fbfaa); }
.step-num.s4 { background: linear-gradient(135deg, var(--peach), #f09860); }

.step-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--peach-light), var(--rose-light));
}

.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(244,167,185,0.12);
}
.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text-dark);
  transition: background 0.2s;
  border: none; background: none; width: 100%; text-align: left;
}
.faq-q:hover { background: var(--rose-light); }
.faq-icon { font-size: 1.2rem; color: var(--rose-dark); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  font-size: 0.9rem; color: var(--text-soft); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-section {
  padding: 80px 5%;
  background: var(--white);
}

.contact-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

.contact-info p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.75; margin-top: 16px; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text-dark); }

.contact-ways { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.contact-way {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--rose-light);
  border-radius: 14px;
}
.way-icon { font-size: 1.4rem; }
.way-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-soft); }
.way-val { font-size: 0.9rem; color: var(--text-dark); font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .field-input { background: var(--cream); }
textarea.field-input { resize: vertical; min-height: 110px; }

.submit-btn {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--rose-dark), #c4578a);
  color: var(--white); border: none; border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(232,120,154,0.4);
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,120,154,0.55); }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--text-dark);
  color: var(--text-soft);
  padding: 60px 5% 30px;
}

.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.75; margin-top: 14px; color: #a08090; }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-col a { color: #a08090; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  border-top: 1px solid rgba(244,167,185,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem; color: #806070;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--rose);
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, bottom 0.3s;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.toast.show { opacity: 1; bottom: 40px; }

/* ── WORDPRESS CONTENT STYLES ────────────────────────────── */
.entry-content h1, .entry-content h2, .entry-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.entry-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.entry-content a { color: var(--rose-dark); }
.entry-content a:hover { color: var(--rose); }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 18px; color: var(--text-mid); }

/* Single post / page layout */
.page-hero {
  background: linear-gradient(135deg, var(--rose-light), var(--lilac-light));
  padding: 120px 5% 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
}

.content-wrapper {
  max-width: 860px; margin: 60px auto; padding: 0 5%;
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  #primary-navigation { display: none; }
  .hamburger { display: block; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .tool-form-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; align-items: center; gap: 28px; }
  .steps-row::before { display: none; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .tool-card { padding: 28px 20px; }
}

/* Mobile nav open state */
#primary-navigation.nav-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(253,248,244,0.98);
  padding: 24px 5%;
  border-bottom: 2px solid var(--rose-light);
  box-shadow: 0 8px 32px rgba(244,167,185,0.2);
}
#primary-navigation.nav-open ul {
  flex-direction: column; gap: 16px;
}
