/* ============================================================
   DeanDzurilla.com — Spring 2026 Refresh
   Design tokens pulled from provided comps
   ============================================================ */

:root {
  --cream: #ece6d8;        /* sampled from portrait background */
  --cream-light: #f5f1e7;
  --ink: #221c16;
  --ink-soft: #4a4239;
  --red: #7e1f1f;
  --red-dark: #6a1919;
  --red-bright: #a32929;
  --dark: #211b15;
  --dark-soft: #2b241d;
  --card: #f3eee2;
  --border: #d6cbb5;
  --border-soft: #ded4c1;
  --white: #fffdf8;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

a { color: var(--red); }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */

h1, h2, h3 { font-family: var(--serif); font-weight: 700; line-height: 1.15; }

h1 { font-size: clamp(2.6rem, 6vw, 4.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.22rem; }

.accent { color: var(--red); }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.rule {
  width: 44px;
  height: 3px;
  background: var(--red);
  border: 0;
  margin: 22px 0;
}

.lead { font-size: 1.06rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-align: center;
}

.btn-primary { background: var(--red); color: var(--cream-light); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--cream-light); }

.btn-light { background: var(--cream-light); color: var(--ink); border-color: var(--cream-light); }
.btn-light:hover { background: var(--cream); border-color: var(--cream); }

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  font-family: var(--sans);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 30px;
  height: 3px;
  background: var(--red);
}

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

.nav-links a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active { color: var(--red); border-bottom-color: var(--red); }

.nav-links .btn { padding: 11px 22px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* ---------- Hero ---------- */

.hero { padding: 24px 0 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: end;
}

.hero-copy { padding-bottom: 64px; }

.hero-copy p { margin-bottom: 16px; color: var(--ink-soft); font-size: 0.98rem; max-width: 56ch; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Pages without a hero image: single column, full-width copy */
.hero .hero-grid:not(:has(.hero-img)) {
  align-items: center;
  grid-template-columns: 1fr;
}
.hero:not(:has(.hero-img)) { padding-bottom: 0; }
.hero:not(:has(.hero-img)) .hero-copy { padding-bottom: 0; }
.hero:not(:has(.hero-img)) h1 { max-width: 22ch; }

/* Centered hero variant — for landscape images that shouldn't sit flush
   against the band below (e.g. About). Image is vertically centered with
   the text and feathered on all four edges. */
.hero-center { padding-bottom: 28px; }
.hero-center .hero-grid { align-items: center; }
.hero-center .hero-copy { padding-bottom: 0; }
.hero-center .hero-img::after {
  box-shadow: inset 0 0 34px 26px var(--cream);
}

/* ---------- Image placeholders (swap with real assets) ---------- */

.img-ph {
  background:
    linear-gradient(135deg, rgba(126,31,31,0.05), rgba(34,28,22,0.07)),
    var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a99e8b;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  min-height: 320px;
}

.img-ph.tall { min-height: 420px; }

/* Hero portrait — sketch illustration on cream, blends into page background.
   The page background (--cream) is sampled from the image itself, so no blend
   mode is needed; the ::after overlay feathers the edges to hide any JPG
   compression artifacts at the borders. */
.hero-img {
  position: relative;
}

.hero-img img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  /* feather top/left/right edges only — bottom sits flush against the dark band */
  box-shadow:
    inset 0 36px 30px -18px var(--cream),
    inset 36px 0 30px -18px var(--cream),
    inset -36px 0 30px -18px var(--cream);
  pointer-events: none;
}

/* ---------- Dark stat band ---------- */

.band-dark {
  background: var(--dark);
  color: #efe9dc;
  padding: 24px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 0.86rem;
  line-height: 1.45;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 24px;
}

.stat:first-child { border-left: 0; padding-left: 0; }

.stat .icon { color: #c9a36a; flex-shrink: 0; }

.stat .hl { color: #fdfaf2; font-weight: 700; }

/* ---------- Sections ---------- */

.section { padding: 48px 0; }
.section-tight { padding: 36px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .rule { margin: 22px auto 0; }
.section-head p:not(.kicker) { margin-top: 12px; color: var(--ink-soft); }
.section-head p.kicker { color: var(--red); }

/* Page-title kicker — matches the dark hero kickers used on inner pages */
.section-head p.kicker.kicker-dark { color: var(--ink-soft); }

/* Kicker with trailing rule line (per comp) */
.kicker-row { display: flex; align-items: center; gap: 28px; margin-bottom: 28px; }
.kicker-row .kicker { margin-bottom: 0; white-space: nowrap; }
.kicker-row::after { content: ""; flex: 1; height: 1px; background: var(--border-soft); }

/* ---------- Ways to work together (divider columns, per comp) ---------- */

.ways-grid {
  display: grid;
  grid-template-columns: 1.05fr repeat(4, 1fr);
  gap: 0;
}

.ways-intro { padding-right: 30px; }

.ways-intro p:not(.kicker) { font-size: 0.92rem; color: var(--ink-soft); }

.way {
  border-left: 1px solid var(--border);
  padding: 6px 24px;
  text-align: center;
}

.way .icon { color: var(--red); margin: 0 auto 14px; display: block; }

.way h3 { font-size: 1.12rem; margin-bottom: 10px; }

.way p { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.6; }

/* ---------- Card grids ---------- */

.cards {
  display: grid;
  gap: 20px;
}

.cards-5 { grid-template-columns: repeat(5, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 26px 22px;
}

.card .icon { color: var(--red); margin-bottom: 14px; }

.card h3 { font-size: 1.08rem; margin-bottom: 10px; }

.card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.6; }

.card .lead-line {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.card ul { list-style: none; margin-top: 6px; }

.card ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 3px 0 3px 16px;
  position: relative;
}

.card ul li::before {
  content: "•";
  color: var(--red);
  position: absolute;
  left: 0;
}

/* ---------- Lead magnet band ---------- */

.lead-magnet {
  background: var(--dark);
  color: #efe9dc;
  border-radius: 6px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}

.lm-book {
  width: 120px;
  height: 160px;
  background: var(--red);
  border-radius: 3px 8px 8px 3px;
  transform: rotate(-7deg) translateY(-28px);
  box-shadow: 6px 8px 18px rgba(0,0,0,0.35), inset 8px 0 0 rgba(0,0,0,0.18);
  color: var(--cream-light);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  display: flex;
  align-items: center;
  padding: 14px 12px 14px 22px;
  flex-shrink: 0;
}

.lead-magnet h2 { font-size: 1.5rem; color: #fdfaf2; }

.lead-magnet p { font-size: 0.92rem; color: #cfc6b4; margin-top: 8px; max-width: 46ch; }

.lm-form { display: flex; flex-direction: column; gap: 10px; min-width: 300px; }

.lm-form .row { display: flex; gap: 10px; }

.lm-form input[type="email"] {
  flex: 1;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  background: #fdfaf2;
  font-family: var(--sans);
  font-size: 0.9rem;
}

.lm-form .note { font-size: 0.74rem; color: #9c9382; }

/* ---------- Testimonial ---------- */

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 38px 44px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  flex-shrink: 0;
}

.testimonial blockquote { font-size: 1.02rem; line-height: 1.7; }

.testimonial cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial cite .org { color: var(--red); }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--red);
  color: #fdf6ec;
  text-align: center;
  padding: 56px 24px;
}

.cta-band h2 { color: #fdf6ec; }

.cta-band p { margin: 10px 0 26px; color: #f0ddd2; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: #b6ad9c;
  padding: 44px 0 36px;
  font-size: 0.85rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand .logo { color: #f3eee2; }

.footer-brand .tagline {
  margin-top: 20px;
  max-width: 46ch;
  line-height: 1.6;
  font-size: 0.83rem;
  text-wrap: balance; /* splits the two lines evenly in modern browsers */
}

.footer-brand .copyright { margin-top: 16px; font-size: 0.76rem; color: #847b6b; }

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; list-style: none; padding-top: 6px; }

.footer-links a { color: #d8d0c0; text-decoration: none; font-size: 0.82rem; }
.footer-links a:hover { color: var(--red-bright); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: #e8e1d2;
  text-decoration: none;
}

.footer-social a:hover { border-color: var(--red-bright); color: var(--red-bright); }

/* ---------- Process steps (Work With Me) ---------- */

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

.step { text-align: left; }

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 { font-family: var(--sans); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

.steps-note { text-align: center; margin-top: 30px; color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Fit lists ---------- */

.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.fit { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }

.fit h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 1.1rem; }

.fit ul { list-style: none; }

.fit li { padding: 6px 0 6px 26px; position: relative; font-size: 0.92rem; color: var(--ink-soft); }

.fit.good li::before { content: "✓"; color: var(--red); font-weight: 700; position: absolute; left: 0; }
.fit.bad li::before { content: "✗"; color: #8a8273; font-weight: 700; position: absolute; left: 0; }

.fit .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; font-size: 0.8rem; color: #fff;
}
.fit.good .badge { background: var(--red); }
.fit.bad .badge { background: #57503f; }

/* ---------- Feature panel (diagnostic promo) ---------- */

.feature-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.feature-panel .kicker { margin-bottom: 8px; }

.feature-panel h2 { margin-bottom: 12px; }

.feature-panel p { color: var(--ink-soft); font-size: 0.95rem; }

.feature-panel .btn { margin-top: 20px; margin-right: 10px; }

.feature-side h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 18px 0 8px;
}

.feature-side ul { list-style: none; }

.feature-side li { padding: 4px 0 4px 24px; position: relative; font-size: 0.92rem; color: var(--ink-soft); }

.feature-side li::before { content: "✓"; color: var(--red); font-weight: 700; position: absolute; left: 0; }

/* ---------- Quote feature (About) ---------- */

.big-quote {
  text-align: center;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.big-quote .line { flex: 1; height: 1px; background: var(--border); max-width: 180px; }

.big-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.4;
}

.big-quote cite { display: block; font-size: 0.95rem; color: var(--red); margin-top: 12px; font-style: normal; font-family: var(--serif); }

.squiggle {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #d83a3a;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* ---------- Dark story panel (About) ---------- */

.story-panel {
  background: var(--dark);
  color: #ddd5c5;
  border-radius: 6px;
  padding: 48px 52px;
}

.story-panel h2 { color: #fdfaf2; margin-bottom: 8px; }

.story-panel .rule { margin: 18px 0 24px; }

.story-panel p { margin-bottom: 16px; font-size: 0.97rem; line-height: 1.75; }

.story-panel p:last-child { margin-bottom: 0; }

/* ---------- Belief list ---------- */

.beliefs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 36px; }

.belief { border-top: 1px solid var(--border); padding-top: 18px; }

.belief h3 { font-size: 1.05rem; margin-bottom: 8px; position: relative; padding-left: 26px; }

.belief h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 3px;
  background: var(--red);
}

.belief p { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px;
}

.form-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 18px 0 6px;
}

.form-card label:first-of-type { margin-top: 0; }

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
}

.form-card input:focus,
.form-card textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }

.form-card textarea { min-height: 130px; resize: vertical; }

.form-card .btn { margin-top: 24px; }

.form-side p { margin-bottom: 18px; color: var(--ink-soft); }

.form-side .small { font-size: 0.88rem; }

/* ---------- Pricing summary row (Diagnostic) ---------- */

.meta-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin: 28px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.meta-row .item .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.meta-row .item .value { font-family: var(--serif); font-size: 1.25rem; }

/* ---------- Blog ---------- */

.post-list { display: grid; gap: 22px; max-width: 760px; }

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  gap: 28px;
  align-items: center;
  transition: border-color 0.15s;
}

.post-card .thumb { flex: 0 0 150px; }

.post-card .thumb img {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 1px solid var(--border);
}

.post-card .card-body { flex: 1; min-width: 0; }

.post-card:hover { border-color: var(--red); }

.post-card .date {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.post-card h3 { margin: 8px 0 8px; font-size: 1.3rem; }

.post-card p { font-size: 0.92rem; color: var(--ink-soft); }

.post-card .more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

/* Article page */

.article { max-width: 700px; margin: 0 auto; }

.article .date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); }

.article h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin: 10px 0 26px; }

.article p { margin-bottom: 18px; font-size: 1.02rem; line-height: 1.8; color: #383128; }

.article h2 { font-size: 1.5rem; margin: 34px 0 14px; }

.article .subhead {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: -12px 0 26px;
}

.article ol { padding-left: 1.5em; margin-bottom: 18px; }

.article ol li {
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #383128;
  padding-left: 6px;
}

.article ol li::marker { color: var(--red); font-weight: 700; }

.article .back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
}

/* ---------- Blog post image (sketch treatment, feathered edges) ---------- */

.post-image { position: relative; margin: 0 0 30px; }

.post-image img { width: 100%; display: block; }

.post-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 34px 26px var(--cream);
  pointer-events: none;
}

.post-image figcaption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 1; /* sits above the edge-feather overlay */
}

/* ---------- Email subscribe band ---------- */

.subscribe-band {
  background: var(--dark);
  color: #efe9dc;
  border-radius: 6px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.subscribe-band h2 { font-size: 1.35rem; color: #fdfaf2; }

.subscribe-band p { font-size: 0.9rem; color: #cfc6b4; margin-top: 6px; max-width: 50ch; }

.subscribe-band .confirm { color: #efe9dc; background: transparent; border-color: var(--red-bright); }

@media (max-width: 720px) {
  .subscribe-band { grid-template-columns: 1fr; padding: 28px 24px; }
}

/* ---------- Big quote marks (match testimonial style) ---------- */

.big-quote .bq-mark {
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--red);
  flex-shrink: 0;
  align-self: flex-start;
}

/* First section on pages without a hero matches homepage top spacing */
main > .section:first-child { padding-top: 28px; }

/* ---------- Prose (privacy) ---------- */

.prose { max-width: 720px; }
.prose h2 { font-size: 1.3rem; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { padding-left: 22px; }

/* ---------- Confirmation message ---------- */

.confirm {
  display: none;
  background: var(--card);
  border: 1px solid var(--red);
  border-left: 4px solid var(--red);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.confirm.show { display: block; }

.confirm a { font-weight: 700; }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 920px) {
  .hero-grid, .form-grid, .feature-panel { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr 1fr; gap: 28px 0; }
  .ways-intro { grid-column: 1 / -1; padding-right: 0; }
  .way:nth-child(even) { border-left: 0; padding-left: 0; }
  .cards-5 { grid-template-columns: repeat(2, 1fr); }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .beliefs { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat { border-left: 0; padding-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .lead-magnet { grid-template-columns: 1fr; text-align: center; }
  .lm-book { margin: 0 auto; }
  .lm-form { min-width: 0; }
  .big-quote .line { display: none; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 20px 24px 26px;
    gap: 18px;
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }

  .cards-5, .cards-4, .cards-2, .beliefs { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .ways-grid { grid-template-columns: 1fr; }
  .way { border-left: 0; padding: 6px 0; text-align: left; }
  .way .icon { margin: 0 0 12px; }
  .hero h1 br { display: none; } /* let the headline wrap naturally on small screens */
  .hero { padding: 44px 0 52px; }
  .section { padding: 52px 0; }
  .testimonial { flex-direction: column; padding: 28px; }
  .post-card { flex-direction: column; align-items: stretch; gap: 18px; }
  .post-card .thumb { flex: none; }
  .post-card .thumb img { width: 100%; height: 170px; }
  .lead-magnet { padding: 32px 24px; }
  .story-panel { padding: 32px 26px; }
  .lm-form .row { flex-direction: column; }
}
