/*
Theme Name: iVolve Coaching
Theme URI: https://ivolve-coaching.nl
Author: Rockwise voor iVolve Coaching
Author URI: https://rockwise.nl
Description: Maatwerk WordPress-thema voor iVolve Coaching. Alle content is beheerbaar via ACF (gratis versie) en Custom Post Types. Ontwerp exact overgenomen van de originele site: donker (#0a0a0a), goud accent (#D19F47), Playfair Display koppen en Inter body, rechte hoeken.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ivolve
*/

/* ==========================================================================
   Design tokens (exact values measured from the original at 1440px)
   ========================================================================== */
:root {
  --iv-bg:        #0a0a0a;
  --iv-bg-card:   rgba(18,18,18,.5);
  --iv-bg-card-2: rgba(24,24,24,.7);
  --iv-border:    rgba(38,38,38,.6);
  --iv-border-2:  rgba(64,64,64,.7);
  --iv-text:      #f2f2f2;
  --iv-mut:       #8c8c8c;
  --iv-dim:       #737373;
  --iv-gold:      #d19f47;
  --iv-gold-soft: #e0b96a;
  --iv-gold-dark: #b3842f;
  --iv-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --iv-sans:  "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --iv-maxw: 1280px;
  --iv-pad: 32px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--iv-bg);
  color: var(--iv-text);
  font-family: var(--iv-sans);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease, background .2s ease; }
a:hover { color: var(--iv-gold); }
h1, h2, h3, h4 { font-family: var(--iv-serif); font-weight: 600; line-height: 1.0; margin: 0 0 .4em; letter-spacing: -.01em; }
p { margin: 0 0 1.2em; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.iv-container { width: 100%; max-width: var(--iv-maxw); margin: 0 auto; padding: 0 var(--iv-pad); }
.iv-section { padding: 128px 0; position: relative; }
.iv-section--tight { padding: 80px 0; }
.iv-section--soft { background: transparent; }
.iv-eyebrow {
  display: inline-block;
  font-family: var(--iv-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--iv-gold);
  margin-bottom: 24px;
}
.iv-h1 { font-size: clamp(2.5rem, 6vw, 3.75rem); letter-spacing: -.025em; line-height: 1.0; }
.iv-h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.0; letter-spacing: -.01em; }
.iv-h3 { font-size: 1.5rem; }
.iv-lead { color: var(--iv-mut); font-size: 18px; line-height: 28px; max-width: 672px; }
.iv-gold-text { color: var(--iv-gold); }
.iv-italic { font-style: italic; color: var(--iv-gold); }
.iv-center { text-align: center; }
.iv-center .iv-lead { margin-left: auto; margin-right: auto; }
.iv-section-head { max-width: 672px; margin: 0 0 56px; }
.iv-section-head.iv-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Buttons (sharp corners, exact padding)
   ========================================================================== */
.iv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-weight: 500; font-size: 14px; letter-spacing: .01em;
  cursor: pointer; border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.iv-btn--primary { background: var(--iv-gold); color: #0a0a0a; }
.iv-btn--primary:hover { background: var(--iv-gold-soft); color: #0a0a0a; }
.iv-btn--ghost { background: transparent; color: var(--iv-text); border-color: var(--iv-border-2); }
.iv-btn--ghost:hover { border-color: var(--iv-gold); color: var(--iv-gold); }
.iv-btn--lg { padding: 16px 32px; font-size: 14px; }

/* ==========================================================================
   Header / navigation (transparent, overlays hero)
   ========================================================================== */
.iv-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.iv-header.is-scrolled {
  position: fixed;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--iv-border);
}
.iv-header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.iv-logo { display: flex; align-items: center; }
.iv-logo img { max-height: 112px; width: auto; }
.iv-header.is-scrolled .iv-logo img { max-height: 72px; transition: max-height .3s ease; }
.iv-logo__text { font-family: var(--iv-serif); font-size: 1.6rem; font-weight: 700; }
.iv-logo__text span { color: var(--iv-gold); }
.iv-nav { display: flex; align-items: center; gap: 40px; }
.iv-nav__menu { display: flex; align-items: center; gap: 40px; list-style: none; }
.iv-nav__menu a { font-size: 14px; font-weight: 500; color: var(--iv-text); }
.iv-nav__menu a:hover,
.iv-nav__menu .current-menu-item > a { color: var(--iv-gold); }
.iv-nav__cta { white-space: nowrap; padding: 10px 20px; }
.iv-nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.iv-nav-toggle span { display: block; width: 26px; height: 2px; background: var(--iv-text); transition: .3s; }
.iv-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.iv-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.iv-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.iv-hero { padding: 40px 0 128px; position: relative; }
.iv-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.iv-hero__title { font-size: clamp(3rem, 8vw, 4.5rem); line-height: 1.0; letter-spacing: -.025em; margin-bottom: 32px; margin-top: 0; }
.iv-hero__title .iv-italic { display: inline; font-style: italic; }
.iv-hero__text { color: var(--iv-mut); font-size: 18px; line-height: 28px; max-width: 576px; }
.iv-hero__text p { margin-bottom: 20px; }
.iv-hero__cta { margin-top: 40px; }
.iv-hero__media { position: relative; width: fit-content; max-width: 100%; margin: 0 auto; }
.iv-hero__media img { border-radius: 0; height: 608px; width: auto; max-width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }

/* Hero eyebrow badge (bordered pill with dot) */
.iv-eyebrow-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; margin-bottom: 24px;
  border: 1px solid rgba(209,159,71,.3);
  background: rgba(209,159,71,.05);
}
.iv-eyebrow-badge__dot { width: 6px; height: 6px; border-radius: 9999px; background: var(--iv-gold); flex: none; }
.iv-eyebrow-badge__text { font-size: 12px; font-weight: 400; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); line-height: 1; }
.iv-hero__badge {
  position: absolute; left: 20px; bottom: 20px;
  background: rgba(10,10,10,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--iv-border-2); border-radius: 0;
  padding: 8px 16px; font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold);
}
.iv-hero__reviews { margin-top: 56px; border-top: 1px solid var(--iv-border); padding-top: 32px; }

/* review cards */
.iv-reviews { display: grid; gap: 24px; }
.iv-review__stars { color: var(--iv-gold); letter-spacing: 2px; font-size: 13px; margin-bottom: 8px; }
.iv-review__quote { font-style: italic; color: var(--iv-mut); margin: 0 0 6px; font-size: 15px; }
.iv-review__author { font-weight: 600; font-size: 14px; }

/* ==========================================================================
   Method strip
   ========================================================================== */
.iv-strip { border-top: 1px solid var(--iv-border); border-bottom: 1px solid var(--iv-border); padding: 32px 0; }
.iv-strip__inner { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.iv-strip__label { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); }
.iv-strip__items { color: var(--iv-mut); font-size: 15px; letter-spacing: .04em; }

/* ==========================================================================
   Problem / cards grid
   ========================================================================== */
.iv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.iv-card {
  background: var(--iv-bg-card); border: 1px solid var(--iv-border); border-radius: 0;
  padding: 32px; transition: border-color .25s ease;
}
.iv-card:hover { border-color: var(--iv-gold-dark); }
.iv-card__title { font-family: var(--iv-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.iv-card__text { color: var(--iv-mut); font-size: 15px; margin: 0; line-height: 1.6; }
.iv-prose { max-width: 672px; }
.iv-prose p { color: var(--iv-mut); font-size: 18px; line-height: 28px; }
.iv-prose p:first-of-type { color: var(--iv-mut); }

/* ==========================================================================
   Pillars (method)
   ========================================================================== */
.iv-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.iv-pillar {
  background: rgba(18,18,18,.3); border: 1px solid var(--iv-border); border-radius: 0;
  padding: 40px; position: relative; transition: border-color .25s ease;
}
.iv-pillar:hover { border-color: var(--iv-gold-dark); }
.iv-pillar__num { font-family: var(--iv-serif); font-size: 48px; color: rgba(38,38,38,.4); opacity: 1; line-height: 1; }
.iv-pillar__title { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.iv-pillar__text { color: var(--iv-mut); margin: 0; font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Over mij / about
   ========================================================================== */
.iv-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.iv-about__img img { border-radius: 0; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.iv-about__text p { color: var(--iv-mut); font-size: 18px; line-height: 28px; }
.iv-features { display: grid; gap: 32px; margin-top: 40px; }
.iv-features--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 64px; }
@media (max-width: 860px) { .iv-features--3 { grid-template-columns: 1fr; } }
.iv-feature { border-left: 2px solid var(--iv-gold); padding-left: 22px; }
.iv-feature__eyebrow { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); }
.iv-feature__title { font-family: var(--iv-serif); font-size: 1.3rem; font-weight: 600; margin: 4px 0 6px; }
.iv-feature__text { color: var(--iv-mut); font-size: 15px; margin: 0; line-height: 1.6; }

/* ==========================================================================
   Steps (how it works)
   ========================================================================== */
.iv-steps { display: grid; gap: 0; }
.iv-step {
  display: grid; grid-template-columns: 160px 1fr; gap: 40px;
  padding: 48px 0; border-top: 1px solid var(--iv-border);
}
.iv-step:last-child { border-bottom: 1px solid var(--iv-border); }
.iv-step__num { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); padding-top: 8px; }
.iv-step__title { font-family: var(--iv-serif); font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; }
.iv-step__text { color: var(--iv-mut); max-width: 620px; margin: 0; font-size: 18px; line-height: 28px; }

/* ==========================================================================
   FAQ / accordion
   ========================================================================== */
.iv-faq { max-width: 768px; margin: 0 auto; }
.iv-faq__item { border-bottom: 1px solid var(--iv-border); }
.iv-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  color: var(--iv-text); font-family: var(--iv-sans); font-size: 1.05rem; font-weight: 500;
  padding: 24px 44px 24px 0; position: relative; display: block;
}
.iv-faq__q:hover { color: var(--iv-gold); }
.iv-faq__q::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--iv-gold); transition: transform .25s ease; line-height: 1; font-weight: 300;
}
.iv-faq__item.is-open .iv-faq__q::after { content: "\2212"; }
.iv-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.iv-faq__a-inner { padding: 0 44px 26px 0; color: var(--iv-mut); font-size: 16px; line-height: 1.65; }
.iv-faq__a-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */
.iv-price-group { margin-bottom: 64px; }
.iv-price-group__label { font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); margin-bottom: 10px; }
.iv-price-group__title { font-family: var(--iv-serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 28px; }
.iv-price-table { width: 100%; border-collapse: collapse; table-layout: fixed; background: rgba(18,18,18,.2); border: 1px solid rgba(38,38,38,.6); border-radius: 0; }
.iv-price-table thead th {
  text-align: left; font-family: var(--iv-sans); font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--iv-dim); font-weight: 600; padding: 16px; border-bottom: 1px solid rgba(38,38,38,.4);
}
.iv-price-table td { padding: 16px; border-bottom: 1px solid rgba(38,38,38,.4); color: var(--iv-mut); font-size: 14px; vertical-align: top; overflow-wrap: break-word; }
.iv-price-table tbody tr:last-child td { border-bottom: 0; }
.iv-price-table tbody tr:hover td { background: rgba(24,24,24,.4); }
.iv-price-table .iv-pkg { color: var(--iv-text); font-weight: 500; }
.iv-price-table .iv-tarief { color: var(--iv-gold); font-weight: 500; white-space: nowrap; }
.iv-price-note { color: var(--iv-dim); font-size: .88rem; margin-top: 14px; font-style: italic; }

.iv-price-list { list-style: none; background: rgba(18,18,18,.2); border: 1px solid rgba(38,38,38,.6); border-radius: 0; overflow: hidden; }
.iv-price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 16px; border-bottom: 1px solid rgba(38,38,38,.4); font-size: 14px; }
.iv-price-list li:last-child { border-bottom: 0; }
.iv-price-list .iv-tarief { color: var(--iv-gold); font-weight: 600; white-space: nowrap; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.iv-cta { text-align: center; }
.iv-cta__title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; line-height: 1.05; max-width: 768px; margin: 0 auto 20px; letter-spacing: -.01em; }
.iv-cta__sub { color: var(--iv-mut); max-width: 640px; margin: 0 auto 32px; font-size: 18px; line-height: 28px; }
.iv-cta__note { color: var(--iv-dim); font-size: .9rem; margin-top: 16px; }

/* ==========================================================================
   Intake page
   ========================================================================== */
.iv-intake { padding-top: 140px; }
.iv-intake__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; align-items: start; }
.iv-intake__head .iv-logo__text { font-size: 1.4rem; margin-bottom: 20px; display: inline-block; }
.iv-back { color: var(--iv-mut); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 32px; }
.iv-contact-card { background: var(--iv-bg-card); border: 1px solid var(--iv-border); border-radius: 0; padding: 32px; }
.iv-contact-card__eyebrow { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-gold); }
.iv-contact-card__title { font-family: var(--iv-serif); font-size: 1.5rem; font-weight: 600; margin: 6px 0 12px; }
.iv-contact-card__text { color: var(--iv-mut); font-size: .95rem; }
.iv-contact-card a { display: inline-flex; align-items: center; gap: 10px; color: var(--iv-text); font-weight: 600; margin-top: 10px; }
.iv-contact-card a:hover { color: var(--iv-gold); }

/* Contact Form 7 styling */
.iv-form-wrap .wpcf7-form p { margin-bottom: 18px; }
.iv-form-wrap label { display: block; font-size: 12px; letter-spacing: 0.6px; text-transform: uppercase; color: var(--iv-mut); font-weight: 500; margin-bottom: 8px; }
.iv-form-wrap input[type=text],
.iv-form-wrap input[type=email],
.iv-form-wrap input[type=tel],
.iv-form-wrap input[type=number],
.iv-form-wrap select,
.iv-form-wrap textarea {
  width: 100%; background: var(--iv-bg-card); border: 1px solid var(--iv-border-2); border-radius: 0;
  color: var(--iv-text); padding: 14px 16px; font-family: var(--iv-sans); font-size: 15px; transition: border-color .2s ease;
}
.iv-form-wrap input:focus,
.iv-form-wrap select:focus,
.iv-form-wrap textarea:focus { outline: none; border-color: var(--iv-gold); }
.iv-form-wrap input::placeholder, .iv-form-wrap textarea::placeholder { color: var(--iv-dim); }
.iv-form-wrap .wpcf7-submit {
  background: var(--iv-gold); color: #0a0a0a; border: 0; border-radius: 0;
  padding: 16px 32px; font-weight: 500; font-size: 14px; cursor: pointer; transition: background .2s ease;
}
.iv-form-wrap .wpcf7-submit:hover { background: var(--iv-gold-soft); }
.iv-form-wrap .wpcf7-response-output { border-radius: 0; margin: 10px 0 0; padding: 12px 16px !important; }

/* ==========================================================================
   Footer
   ========================================================================== */
.iv-footer { background: var(--iv-bg); border-top: 1px solid var(--iv-border); padding: 80px 0 32px; }
.iv-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.iv-footer__brand .iv-logo__text { font-size: 1.5rem; }
.iv-footer__about { color: var(--iv-mut); font-size: .95rem; max-width: 320px; margin-top: 14px; line-height: 1.6; }
.iv-footer__col h4 { font-family: var(--iv-sans); font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-dim); margin-bottom: 18px; }
.iv-footer__col ul { list-style: none; display: grid; gap: 12px; }
.iv-footer__col a { color: var(--iv-mut); font-size: .95rem; }
.iv-footer__col a:hover { color: var(--iv-gold); }
.iv-footer__contact a { display: block; margin-bottom: 8px; }
.iv-footer__bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--iv-border);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  color: var(--iv-dim); font-size: .88rem;
}
.iv-footer__legal { display: flex; gap: 24px; }

/* ==========================================================================
   Generic page / legal
   ========================================================================== */
.iv-page { padding: 160px 0 128px; }
.iv-page__head { max-width: 768px; margin: 0 auto 48px; text-align: center; }
.iv-legal { max-width: 800px; margin: 0 auto; }
.iv-legal h2 { font-size: 1.6rem; font-weight: 600; margin: 40px 0 14px; }
.iv-legal h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 10px; }
.iv-legal p, .iv-legal li { color: var(--iv-mut); }
.iv-legal ul { padding-left: 20px; margin-bottom: 1.1em; }
.iv-legal ul li { list-style: disc; margin-bottom: 6px; }

/* ==========================================================================
   Blog
   ========================================================================== */
.iv-post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.iv-post-card { background: rgba(18,18,18,.3); border: 1px solid var(--iv-border); transition: border-color .25s ease, transform .25s ease; }
.iv-post-card:hover { border-color: var(--iv-gold-dark); transform: translateY(-3px); }
.iv-post-card__link { display: block; color: inherit; height: 100%; }
.iv-post-card__link:hover { color: inherit; }
.iv-post-card__img { aspect-ratio: 16/10; overflow: hidden; }
.iv-post-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iv-post-card__img--placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg,#161616,#0f0f0f); }
.iv-post-card__img--placeholder span { font-family: var(--iv-serif); font-size: 1.6rem; color: rgba(209,159,71,.35); }
.iv-post-card__body { padding: 28px; }
.iv-post-card__meta { display: block; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--iv-dim); margin-bottom: 12px; }
.iv-post-card__cat { color: var(--iv-gold); }
.iv-post-card__title { font-family: var(--iv-serif); font-weight: 600; font-size: 1.4rem; line-height: 1.15; margin: 0 0 12px; color: var(--iv-text); }
.iv-post-card:hover .iv-post-card__title { color: var(--iv-gold); }
.iv-post-card__excerpt { color: var(--iv-mut); font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.iv-post-card__more { font-size: 13px; font-weight: 600; color: var(--iv-gold); letter-spacing: .02em; }

.iv-pagination { margin-top: 56px; text-align: center; }
.iv-pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.iv-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border: 1px solid var(--iv-border); color: var(--iv-mut); font-size: 14px; }
.iv-pagination .page-numbers:hover { border-color: var(--iv-gold); color: var(--iv-gold); }
.iv-pagination .page-numbers.current { background: var(--iv-gold); color: #0a0a0a; border-color: var(--iv-gold); }

/* Single post */
.iv-single .iv-container { max-width: 820px; }
.iv-single__head { text-align: center; margin-bottom: 40px; }
.iv-single__head .iv-back { justify-content: center; }
.iv-single__head .iv-eyebrow { display: block; margin-top: 8px; }
.iv-single__head .iv-h1 { margin: 8px 0 16px; }
.iv-single__meta { color: var(--iv-dim); font-size: 14px; letter-spacing: .04em; }
.iv-single__img { margin: 0 0 40px; }
.iv-single__img img { width: 100%; height: auto; display: block; border-radius: 0; aspect-ratio: 16/9; object-fit: cover; }
.iv-post-content { font-size: 18px; line-height: 1.75; }
.iv-post-content h2 { font-size: 1.8rem; margin: 40px 0 14px; }
.iv-post-content h3 { font-size: 1.35rem; margin: 30px 0 10px; }
.iv-post-content img { border-radius: 0; margin: 24px 0; }
.iv-post-content blockquote { border-left: 2px solid var(--iv-gold); padding-left: 20px; margin: 24px 0; color: var(--iv-text); font-style: italic; }
@media (max-width: 960px) { .iv-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .iv-post-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Icons
   ========================================================================== */
.iv-icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; flex: none; }
.iv-icon-badge {
  width: 40px; height: 40px; border-radius: 0;
  background: rgba(209,159,71,.1); border: 1px solid rgba(209,159,71,.2);
  color: var(--iv-gold); display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.iv-icon-badge .iv-icon { width: 18px; height: 18px; }
/* Larger gold badge (method pillars) */
.iv-icon-badge--lg { width: 48px; height: 48px; }
.iv-icon-badge--lg .iv-icon { width: 20px; height: 20px; }
/* Muted/neutral badge (problem cards) */
.iv-icon-badge--muted { background: transparent; border-color: #262626; color: var(--iv-mut); }
.iv-btn .iv-icon { width: 18px; height: 18px; }
.iv-review__stars { display: inline-flex; gap: 3px; align-items: center; }
.iv-review__stars .iv-icon { width: 15px; height: 15px; color: var(--iv-gold); }
.iv-feature { display: block; }
.iv-feature__icon { color: var(--iv-gold); margin-bottom: 12px; }
.iv-feature__icon .iv-icon { width: 26px; height: 26px; }
.iv-pillar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.iv-pillar__head .iv-pillar__num { margin: 0; }
.iv-faq__q .iv-icon { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--iv-gold); transition: transform .25s ease; }
.iv-faq__item.is-open .iv-faq__q .iv-icon { transform: translateY(-50%) rotate(180deg); }
.iv-faq__q.iv-faq__q--chevron::after { content: none; }
.iv-contact-card a { display: inline-flex; align-items: center; gap: 10px; }
.iv-contact-card a .iv-icon { color: var(--iv-gold); }
.iv-footer__contact a { display: flex; align-items: center; gap: 10px; }
.iv-footer__contact a .iv-icon { width: 16px; height: 16px; color: var(--iv-gold); }
.iv-back .iv-icon { width: 16px; height: 16px; transform: rotate(180deg); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.iv-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.iv-reveal.is-visible { opacity: 1; transform: none; }
.no-js .iv-reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --iv-pad: 24px; }
}
@media (max-width: 960px) {
  .iv-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .iv-hero__title { margin-top: 0; }
  .iv-hero__media { width: auto; }
  .iv-hero__media img { width: 100%; height: auto; }
  .iv-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .iv-intake__grid { grid-template-columns: 1fr; }
  .iv-pillars { grid-template-columns: 1fr; }
  .iv-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .iv-nav__menu, .iv-nav__cta.iv-nav__cta--desktop { display: none; }
  .iv-nav-toggle { display: flex; }
  .iv-nav {
    position: fixed; inset: 80px 0 auto 0; background: rgba(10,10,10,.98); backdrop-filter: blur(12px);
    flex-direction: column; gap: 0; padding: 20px 24px 32px; border-bottom: 1px solid var(--iv-border);
    transform: translateY(-120%); transition: transform .3s ease; align-items: stretch;
  }
  .iv-nav.is-open { transform: none; }
  .iv-nav__menu { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .iv-nav__menu li { border-bottom: 1px solid var(--iv-border); }
  .iv-nav__menu a { display: block; padding: 16px 0; }
  .iv-nav__cta { display: inline-flex; margin-top: 18px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .iv-section { padding: 80px 0; }
  .iv-cards { grid-template-columns: 1fr; }
  .iv-step { grid-template-columns: 1fr; gap: 8px; padding: 32px 0; }
  .iv-footer__grid { grid-template-columns: 1fr; }
  .iv-price-table { display: block; overflow-x: auto; white-space: nowrap; }
  .iv-footer__bottom { flex-direction: column; align-items: flex-start; }
}
