/*
Theme Name: The Unplugged Mother
Theme URI: https://theunpluggedmother.com
Author: Deepika
Author URI: https://theunpluggedmother.com
Description: A warm, editorial theme for The Unplugged Mother — helping moms take back screen time without the fight.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: unplugged-mother
Tags: blog, parenting, editorial
*/

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

:root {
  --purple:      #3C3489;
  --purple-mid:  #534AB7;
  --purple-light:#EEEDFE;
  --purple-xlight:#F5F4FE;
  --pink:        #993556;
  --pink-light:  #FBEAF0;
  --pink-mid:    #F4C0D1;
  --cream:       #FDFBF8;
  --cream-dark:  #F1EFE8;
  --border:      #EDE8E0;
  --text-1:      #1A1A1A;
  --text-2:      #5F5E5A;
  --text-3:      #888780;
  --teal:        #0F6E56;
  --teal-light:  #E1F5EE;
  --green:       #3B6D11;
  --green-light: #EAF3DE;
  --amber-light: #FAEEDA;
  --amber-dark:  #633806;
  --white:       #ffffff;
  --font-serif:  Georgia, 'Times New Roman', serif;
  --font-sans:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-pill: 24px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --max-w:       1100px;
  --max-w-text:  720px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-1);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-1);
}

h1 { font-size: clamp(28px, 4vw, 38px); }
h2 { font-size: clamp(22px, 3vw, 28px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); }
h4 { font-size: 18px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.container--text {
  max-width: var(--max-w-text);
}

/* ── Utility ──────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  text-decoration: none;
}
.btn:hover { opacity: .88; text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn--primary { background: var(--purple); color: var(--white); }
.btn--pink    { background: var(--pink);   color: var(--white); }
.btn--outline { background: transparent; border: 1.5px solid var(--purple); color: var(--purple); }

/* ── Navigation ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -.3px;
}
.site-logo em { color: var(--pink); font-style: italic; }
.site-logo:hover { text-decoration: none; opacity: .85; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color .15s;
}
.nav-menu a:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 500 !important;
}
.nav-cta:hover { opacity: .88; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-1);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px 56px;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--pink-light);
  color: #72243E;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--text-1);
}
.hero__title em { color: var(--purple); font-style: italic; }

.hero__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  max-width: 440px;
}

.hero__form input[type="email"] {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-1);
  outline: none;
  transition: border-color .15s;
}
.hero__form input[type="email"]:focus { border-color: var(--purple); }
.hero__form button {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.hero__form button:hover { opacity: .88; }

.hero__note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-3);
}

.hero__image {
  background: var(--purple-light);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero__avatar-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
}
.avatar-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 3px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--pink);
}
.avatar-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
}
.avatar-title {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--purple-mid);
}
.avatar-quote {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.6;
  max-width: 240px;
}

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
}

.trust-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-2);
}
.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── Features Section ─────────────────────────────── */
.features {
  background: var(--white);
  padding: 60px 32px;
  border-bottom: 1px solid var(--border);
}

.features__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 36px;
}
.section-header h2 { margin-bottom: 10px; }
.section-header p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-2);
  max-width: 560px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: box-shadow .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ── Detox CTA Section ────────────────────────────── */
.detox-cta {
  background: var(--purple);
  padding: 64px 32px;
}

.detox-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.detox-cta__left h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: clamp(22px, 3vw, 30px);
}

.detox-cta__left p {
  color: #AFA9EC;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.detox-cta__form {
  display: flex;
  gap: 8px;
  max-width: 420px;
}

.detox-cta__form input[type="email"] {
  flex: 1;
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-1);
  outline: none;
}

.detox-cta__form button {
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 20px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.detox-cta__form button:hover { opacity: .88; }

.detox-cta__right {
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
}

.detox-cta__right h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #CECBF6;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.day-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.day-row:last-child { border-bottom: none; }

.day-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #CECBF6;
  flex-shrink: 0;
  font-family: var(--font-sans);
}

.day-text {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #CECBF6;
}

/* ── Blog Posts Section ───────────────────────────── */
.recent-posts {
  background: var(--cream);
  padding: 60px 32px;
  border-bottom: 1px solid var(--border);
}

.recent-posts__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.post-card a { text-decoration: none; color: inherit; }

.post-card__thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body { padding: 18px; }

.post-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.4;
  margin-bottom: 8px;
}

.post-card__meta {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-3);
}

/* ── About Strip ──────────────────────────────────── */
.about-strip {
  background: #FFF8F5;
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.about-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 2.5px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
  overflow: hidden;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }

.about-strip h3 { font-size: 20px; margin-bottom: 8px; }
.about-strip p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}

/* ── Community Band ───────────────────────────────── */
.community-band {
  background: var(--pink-light);
  padding: 40px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.community-band h2 { margin-bottom: 10px; color: var(--purple); }
.community-band p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
}

/* ── Blog / Archive ───────────────────────────────── */
.blog-archive {
  padding: 60px 32px;
}

.blog-archive__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.blog-archive__posts { display: flex; flex-direction: column; gap: 24px; }

.blog-post-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: hidden;
  transition: box-shadow .2s;
}
.blog-post-row:hover { box-shadow: var(--shadow-md); }

.blog-post-row__thumb {
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
}
.blog-post-row__thumb img { width: 100%; height: 100%; object-fit: cover; }

.blog-post-row__body { padding: 20px; }
.blog-post-row__body h2 { font-size: 18px; margin-bottom: 8px; }
.blog-post-row__body h2 a { color: var(--text-1); text-decoration: none; }
.blog-post-row__body h2 a:hover { color: var(--purple); }
.blog-post-row__excerpt {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.read-more {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
}

/* ── Sidebar ──────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 14px;
}

.sidebar-form input[type="email"] {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  font-size: 13px;
  font-family: var(--font-sans);
  margin-bottom: 8px;
  outline: none;
  transition: border-color .15s;
}
.sidebar-form input[type="email"]:focus { border-color: var(--purple); }
.sidebar-form button {
  width: 100%;
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 9px;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  transition: opacity .15s;
}
.sidebar-form button:hover { opacity: .88; }

/* ── Single Post ──────────────────────────────────── */
.single-post {
  padding: 60px 32px;
}

.single-post__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.post-content { max-width: var(--max-w-text); }

.post-header { margin-bottom: 32px; }
.post-header .post-tag { margin-bottom: 14px; }
.post-header h1 { margin-bottom: 14px; }
.post-meta {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.post-featured-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  overflow: hidden;
  max-height: 420px;
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }

.post-body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-1);
}
.post-body h2 { font-size: 22px; margin: 32px 0 14px; }
.post-body h3 { font-size: 18px; margin: 24px 0 10px; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 0 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: .5rem; }
.post-body blockquote {
  border-left: 3px solid var(--purple);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--purple-xlight);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--purple);
}

/* ── Page: 7-Day Plan ─────────────────────────────── */
.plan-page {
  padding: 60px 32px;
}

.plan-page__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.plan-page h1 { margin-bottom: 14px; }
.plan-page__sub {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
}

.plan-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 40px;
  text-align: left;
}

.plan-form h3 { margin-bottom: 8px; }
.plan-form p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.plan-form__row {
  display: flex;
  gap: 8px;
}

.plan-form__row input[type="email"] {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .15s;
}
.plan-form__row input[type="email"]:focus { border-color: var(--purple); }
.plan-form__row button {
  background: var(--purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.plan-form__row button:hover { opacity: .88; }

.plan-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 36px;
}

.plan-day {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
}

.plan-day__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.plan-day__title {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── About Page ───────────────────────────────────── */
.about-page {
  padding: 60px 32px;
}

.about-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-page__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.about-page__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--pink-light);
  border: 3px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--pink);
  overflow: hidden;
  flex-shrink: 0;
}
.about-page__avatar img { width: 100%; height: 100%; object-fit: cover; }

.about-page__header h1 { margin-bottom: 6px; }
.about-page__header p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
}

.about-page__body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-1);
  line-height: 1.8;
}
.about-page__body p { margin-bottom: 1.25rem; }
.about-page__body h2 { font-size: 22px; margin: 32px 0 14px; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: #2C2C2A;
  padding: 36px 32px;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-brand em { color: #ED93B1; font-style: italic; }

.footer-url {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #888780;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #888780;
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  max-width: var(--max-w);
  margin: 16px auto 0;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #5F5E5A;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner,
  .detox-cta__inner,
  .about-strip__inner,
  .blog-archive__inner,
  .single-post__inner { grid-template-columns: 1fr; }

  .features__grid,
  .posts-grid { grid-template-columns: repeat(2, 1fr); }

  .plan-days { grid-template-columns: repeat(4, 1fr); }

  .blog-post-row { grid-template-columns: 1fr; }
  .blog-post-row__thumb { min-height: 180px; }

  .about-page__header { grid-template-columns: 1fr; text-align: center; }
  .about-page__avatar { margin: 0 auto; }
}

@media (max-width: 600px) {
  .site-header { padding: 0 16px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px; gap: 16px; z-index: 99; }
  .nav-toggle { display: block; }

  .hero { padding: 40px 16px; }
  .hero__form { flex-direction: column; }
  .features__grid,
  .posts-grid { grid-template-columns: 1fr; }
  .plan-days { grid-template-columns: repeat(2, 1fr); }
  .detox-cta__form { flex-direction: column; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .container, .hero, .features, .detox-cta, .recent-posts, .about-strip, .community-band, .blog-archive, .single-post, .plan-page, .about-page { padding-left: 16px; padding-right: 16px; }
}

/* ── Kadence Overrides ────────────────────────────── */
.wp-site-blocks { padding: 0 !important; }
.entry-content { max-width: 100% !important; }
