/*
Theme Name: Raees Addox
Theme URI: https://raeesaddox.com
Author: Raees Addox
Author URI: https://raeesaddox.com
Description: Personal brand theme for Raees Addox — Entrepreneur, Educator & Digital Marketer.
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: raees-addox
Tags: personal, blog, portfolio, one-column, custom-menu, custom-logo, featured-images, theme-options
*/

/* ---------- Raees Addox — Vibrant Creator / Light Premium ---------- */
:root {
  --bg: #FAF7F2;
  --bg-cream: #F1ECE2;
  --bg-warm: #F5EDE0;
  --ink: #0E0E10;
  --ink-soft: #1B1B1F;
  --muted: #6B6760;
  --line: #E6DFD3;
  --accent: #FF5B1F;       /* warm orange */
  --accent-deep: #E54100;
  --lime: #D4F542;          /* secondary pop */
  --sky: #B8E0FF;           /* tertiary pop */
  --pink: #FFD3C5;
  --green: #1F6E4A;
  --shadow-1: 0 1px 0 rgba(14,14,16,0.06), 0 8px 24px rgba(14,14,16,0.06);
  --shadow-2: 0 1px 0 rgba(14,14,16,0.06), 0 24px 60px rgba(14,14,16,0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body { font-size: 16px; line-height: 1.55; }

/* Display + body type */
.display, h1, h2, h3 {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-optical-sizing: auto;
  text-wrap: balance;
}
h1:has(br), h2:has(br), h3:has(br) { text-wrap: wrap; }
h1 { font-size: clamp(40px, 7vw, 96px); line-height: 0.95; }
h2 { font-size: clamp(32px, 5vw, 64px); line-height: 1.0; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; }
p { margin: 0; text-wrap: pretty; }
.serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* Selection */
::selection { background: var(--accent); color: white; }

/* Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 720px) {
  .container { padding: 0 18px; }
}

/* Section */
section { position: relative; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: 'Inter';
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  border: 1.5px solid transparent;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent); color: white; }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-soft {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn-soft:hover { border-color: var(--ink); }

.btn .arrow {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
.btn:hover .arrow { transform: translateX(3px); }
.btn-ghost .arrow, .btn-soft .arrow { background: rgba(14,14,16,0.08); }

/* Card */
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: #d8cfbf; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  --marquee-speed: 32s;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-speed) linear infinite;
  gap: 56px;
  align-items: center;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Magnetic button helper */
.magnetic {
  display: inline-block;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink);
}
.badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  position: relative;
}
.badge .pulse::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--accent); opacity: .5;
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Sticker */
.sticker {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  transform: rotate(-2deg);
}

/* Underline scribble */
.scribble {
  position: relative;
  display: inline-block;
}
.scribble::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -8px;
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 14' preserveAspectRatio='none'><path d='M2 9 C 40 2, 80 13, 110 7 S 180 2, 218 8' fill='none' stroke='%23FF5B1F' stroke-width='3.5' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}

/* Section spacing */
.section {
  padding: clamp(64px, 9vw, 140px) 0;
}
.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

/* Star burst */
.starburst {
  width: 110px; height: 110px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
}

/* Underline link */
.ulink {
  position: relative;
  display: inline-block;
  font-weight: 500;
}
.ulink::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor; transform-origin: right;
  transform: scaleX(1);
  transition: transform .4s ease;
}
.ulink:hover::after { transform-origin: left; transform: scaleX(0); }

/* Shapes (decoration) */
.blob {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .65;
}

/* Star (CSS) */
.star {
  display: inline-block;
  width: 1em; height: 1em;
  background: currentColor;
  clip-path: polygon(50% 0,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

/* Squiggle divider */
.squiggle {
  height: 14px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 14' preserveAspectRatio='none'><path d='M0 7 Q15 -1 30 7 T60 7' fill='none' stroke='%230E0E10' stroke-width='2'/></svg>") repeat-x;
  background-size: 60px 14px;
  width: 100%;
}

/* Utilities */
.center { text-align: center; }
.flex { display: flex; }
.between { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }

/* Anchor offset */
[id] { scroll-margin-top: 100px; }

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease;
}
.nav-scrolled {
  padding: 12px 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 247, 242, 0.78);
  border-bottom: 1px solid rgba(14,14,16,0.06);
}
.nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: inline-flex; align-items: center; }
.nav-wordmark {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.04em;
}
.nav-wordmark .wm-accent { color: var(--accent); margin-left: 0.2em; }
.nav-wordmark .wm-dot {
  display: inline-block;
  width: 0.32em; height: 0.32em;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 0.04em;
  margin-bottom: -0.02em;
}
.nav-links {
  display: flex; gap: 2px; align-items: center;
}
.nav-link {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  padding: 8px 12px; border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.current { background: rgba(14,14,16,0.06); color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 8px; }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  border-radius: 999px;
  background: white; border: 1px solid var(--line);
  cursor: pointer;
}
.nav-burger span {
  display: block; width: 16px; height: 1.6px; background: var(--ink);
  transition: transform .25s, opacity .2s;
  border-radius: 2px;
}
.nav-mobile {
  display: none;
  margin: 0 18px; margin-top: 12px;
  padding: 12px;
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--ink);
}
.nav-mobile-link:hover { background: var(--bg-cream); }
@media (max-width: 1200px) {
  .nav-links { display: none; }
}
@media (max-width: 680px) {
  .nav-cta .btn-primary { display: none; }
  .nav-burger { display: inline-flex; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink); color: var(--bg);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.ft-cta {
  position: relative;
  padding: 64px 56px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: white;
  margin-bottom: 80px;
  overflow: hidden;
}
.ft-cta-bg {
  position: absolute; right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.ft-cta-h { font-size: clamp(40px, 6vw, 80px); line-height: 0.95; color: white; position: relative; z-index: 1; }
.ft-cta-sub { margin-top: 20px; font-size: 18px; max-width: 480px; opacity: .92; position: relative; z-index: 1; }
.ft-cta-row { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.ft-cta .btn-accent { background: var(--ink); color: var(--bg); }
.ft-cta .btn-accent:hover { background: white; color: var(--ink); }
.ft-cta .btn-soft { background: white; }

.ft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,247,242,0.1);
}
.ft-col h4 {
  font-family: 'Inter'; font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-bottom: 20px;
}
.ft-col a {
  display: block;
  font-size: 15px;
  color: var(--bg);
  padding: 6px 0;
  transition: color .2s, padding .2s;
}
.ft-col a:hover { color: var(--accent); padding-left: 4px; }
.ft-social {
  display: inline-flex !important; align-items: center;
  padding: 8px 14px !important;
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 999px;
  font-size: 12px !important;
  font-weight: 600;
}
.ft-social:hover { background: var(--accent); border-color: var(--accent); color: white; padding-left: 14px !important; }

.ft-form {
  display: flex;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.15);
  border-radius: 999px;
  padding: 4px;
  align-items: center;
  transition: border-color .3s;
}
.ft-form:focus-within { border-color: var(--accent); }
.ft-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--bg); font-family: inherit; font-size: 14px;
  padding: 10px 16px;
}
.ft-form input::placeholder { color: rgba(250,247,242,0.45); }
.ft-form button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center;
  transition: transform .3s;
  cursor: pointer;
  border: 0;
}
.ft-form button:hover { transform: rotate(-45deg); }

.ft-bottom {
  display: flex; justify-content: space-between;
  padding: 32px 28px;
  font-size: 13px;
  color: rgba(250,247,242,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.ft-mark {
  overflow: hidden;
  line-height: 0.85;
  padding: 0 0 20px;
  text-align: center;
}
.ft-mark span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 22vw, 320px);
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(250,247,242,0.18);
  display: block;
  line-height: 0.85;
  white-space: nowrap;
}

@media (max-width: 880px) {
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-news { grid-column: 1 / -1; }
  .ft-cta { padding: 40px 28px; margin-bottom: 56px; }
}
@media (max-width: 520px) {
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: clamp(120px, 16vh, 160px);
  padding-bottom: clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero-text { display: flex; flex-direction: column; gap: 26px; }
.hero-headline {
  font-size: clamp(48px, 8.6vw, 116px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.hero-headline .line { display: block; }
.accent-text { color: var(--accent); }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 540px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust { margin-top: 8px; }
.trust-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
}

.hero-visual { position: relative; min-height: 480px; }
.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 520px;
  margin: 0 auto;
}
.photo-bg {
  position: absolute; inset: 8% -4% 0 -4%;
  background: radial-gradient(circle at 50% 40%, var(--accent) 0%, var(--accent-deep) 60%, transparent 71%);
  border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%;
  z-index: 0;
  animation: blobMove 14s ease-in-out infinite alternate;
}
@keyframes blobMove {
  0% { transform: scale(1) translateY(0); border-radius: 50% 50% 46% 46% / 60% 60% 40% 40%; }
  100% { transform: scale(1.05) translateY(-8px); border-radius: 46% 54% 52% 48% / 56% 64% 38% 44%; }
}
.hero-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
}

.float-card {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.float-1 { top: 10%; left: -8%; animation-delay: 0s; }
.float-2 { top: 50%; right: -12%; animation-delay: -2s; }
.float-3 { bottom: 4%; left: -2%; animation-delay: -4s; border-color: var(--ink); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-num { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 30px; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 2px; }
.fc-num.small { font-size: 22px; margin-top: 4px; }
.fc-lbl { font-size: 11px; color: var(--muted); line-height: 1.3; }

.hero-sticker {
  position: absolute;
  bottom: -30px; right: -10px;
  width: 110px; height: 110px;
  z-index: 4;
  animation: spinSlow 18s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.cue-line {
  width: 1px; height: 56px; background: var(--ink); opacity: .25;
  position: relative; overflow: hidden;
}
.cue-line::after {
  content: ''; position: absolute; left: 0; right: 0; top: -100%;
  height: 100%; background: var(--accent);
  animation: cueRun 1.8s ease-in-out infinite;
}
@keyframes cueRun {
  0% { top: -100%; }
  70% { top: 100%; }
  100% { top: 100%; }
}
@media (max-width: 980px) {
  .scroll-cue { display: none; }
  .float-1 { left: -2%; top: 6%; }
  .float-2 { right: -2%; top: 48%; }
  .float-3 { left: 2%; bottom: 0%; }
  .hero-sticker { right: 4%; bottom: -10px; width: 90px; height: 90px; }
}
@media (max-width: 600px) {
  .hero-photo-wrap { max-width: 360px; }
  .float-card { padding: 10px 12px; }
  .fc-num { font-size: 22px; }
}

/* ===== MARQUEE SECTION ===== */
.mq-wrap {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.mq-item {
  display: inline-flex; align-items: center; gap: 24px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.mq-star { color: var(--accent); font-size: clamp(20px, 3vw, 36px); display: inline-flex; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--bg-cream); }
.stats-head { max-width: 760px; }
.stats-head h2 { margin-top: 18px; }
.stats-sub { margin-top: 18px; color: var(--ink-soft); font-size: 18px; max-width: 560px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-tile {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(14,14,16,0.08);
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.stat-tile:hover .stat-corner { transform: rotate(90deg); }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}
.stat-label {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  opacity: .9;
  white-space: pre-line;
  max-width: 200px;
  margin-top: 24px;
}
.stat-corner {
  position: absolute; top: 18px; right: 18px;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  opacity: .6;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-tile { min-height: 160px; padding: 26px 22px; }
}

/* ===== VENTURES ===== */
.ventures-head h2 { margin-top: 18px; }
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.venture {
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(14,14,16,0.06);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 460px;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.venture:hover { transform: translateY(-6px); }
.v-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; opacity: .75;
}
.v-name {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.0;
  color: inherit;
}
.v-role { font-size: 13px; opacity: .8; margin-top: -4px; }
.v-desc {
  font-size: 15px; line-height: 1.55;
  opacity: .92;
  margin-top: 4px;
}
.v-stats {
  list-style: none; padding: 0; margin: 8px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.v-stats li {
  padding: 5px 10px;
  font-size: 11px; font-weight: 600;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
}
.v-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  padding-top: 18px;
  border-top: 1px solid currentColor;
  opacity: .9;
}
.v-link .v-arrow {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: currentColor;
  color: var(--ink);
  transition: transform .3s;
}
.v-link:hover .v-arrow { transform: rotate(-45deg); }
@media (max-width: 980px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .venture { min-height: auto; }
}

/* ===== JOURNEY ===== */
.journey { background: var(--bg); }
.journey-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.journey-sticky { position: sticky; top: 120px; align-self: start; }
.j-progress {
  width: 4px; height: 180px; background: var(--line); border-radius: 999px;
  position: relative; overflow: hidden;
}
.j-progress-bar {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--accent);
  border-radius: 999px;
  transition: height .5s cubic-bezier(.2,.8,.2,1);
}
.journey-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0;
}
.j-step {
  display: grid;
  grid-template-columns: 90px 28px 1fr;
  gap: 24px;
  padding: 36px 0;
  align-items: start;
  opacity: .35;
  transition: opacity .5s ease;
}
.j-step.active, .j-step:hover { opacity: 1; }
.j-year {
  font-family: 'Bricolage Grotesque'; font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
  color: var(--ink);
}
.j-line {
  width: 28px; position: relative;
  align-self: stretch;
  display: flex; justify-content: center;
}
.j-line::before {
  content: ''; position: absolute; top: 0; bottom: -36px;
  left: 50%; transform: translateX(-50%);
  width: 2px; background: var(--line);
}
.j-step:last-child .j-line::before { bottom: 0; }
.j-dot {
  position: relative; z-index: 1;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--ink);
  margin-top: 6px;
  transition: background .3s, transform .3s;
}
.j-step.active .j-dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(255,91,31,0.18);
}
.j-title { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
.j-desc { margin-top: 10px; color: var(--ink-soft); font-size: 16px; line-height: 1.55; max-width: 540px; }
@media (max-width: 900px) {
  .journey-grid { grid-template-columns: 1fr; gap: 32px; }
  .journey-sticky { position: static; }
  .j-progress { display: none; }
  .j-step { grid-template-columns: 70px 20px 1fr; gap: 16px; padding: 24px 0; }
  .j-year { font-size: 18px; }
}

/* ===== SPEAKING ===== */
.speaking { background: var(--bg-warm); }
.speak-photos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 110px;
  gap: 12px;
}
.sp-photo { margin: 0; position: relative; border-radius: 18px; overflow: hidden; background: var(--line); }
.sp-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.sp-photo:hover img { transform: scale(1.08); }
.sp-photo figcaption {
  position: absolute; left: 12px; bottom: 12px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.sp-photo:hover figcaption { opacity: 1; transform: translateY(0); }
.sp-0 { grid-column: span 2; grid-row: span 3; }
.sp-1 { grid-column: span 2; grid-row: span 2; }
.sp-2 { grid-column: span 2; grid-row: span 2; }
.sp-3 { grid-column: span 2; grid-row: span 2; }
.sp-4 { grid-column: span 2; grid-row: span 3; }
.sp-5 { grid-column: span 2; grid-row: span 2; }
.speak-list {
  margin-top: 64px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.speak-list-head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.speak-list-head h3 { font-size: 28px; }
.speak-list ul { list-style: none; padding: 0; margin: 0; }
.speak-row {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  align-items: center;
  transition: padding-left .3s ease;
}
.speak-row:last-child { border-bottom: 0; }
.speak-row:hover { padding-left: 8px; background: linear-gradient(90deg, var(--bg-cream) 0%, transparent 100%); }
.speak-when { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 16px; }
.speak-name { font-weight: 600; color: var(--ink); }
.speak-venue { color: var(--muted); font-size: 14px; }
.speak-tag {
  padding: 4px 10px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}
@media (max-width: 880px) {
  .speak-photos { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 90px; }
  .sp-0 { grid-column: span 4; grid-row: span 2; }
  .sp-1 { grid-column: span 2; grid-row: span 2; }
  .sp-2 { grid-column: span 2; grid-row: span 2; }
  .sp-3 { grid-column: span 2; grid-row: span 2; }
  .sp-4 { grid-column: span 2; grid-row: span 2; }
  .sp-5 { grid-column: span 4; grid-row: span 2; }
  .speak-row { grid-template-columns: 80px 1fr; gap: 8px 16px; }
  .speak-venue, .speak-tag { grid-column: 2; }
  .speak-when { grid-row: span 3; align-self: start; }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.srv-side { position: sticky; top: 120px; }
.srv-cards { display: flex; flex-direction: column; gap: 18px; }
.srv-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.srv-head { display: flex; align-items: center; gap: 12px; justify-content: space-between; }
.srv-tag {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.srv-meta { font-size: 13px; color: var(--muted); font-weight: 500; }
.srv-card h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.05; }
.srv-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.srv-list li {
  font-size: 15px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.srv-check {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  background: var(--bg-cream);
  color: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.srv-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.srv-pillars div { display: flex; flex-direction: column; gap: 4px; }
.srv-pillars strong { font-family: 'Bricolage Grotesque'; font-size: 22px; letter-spacing: -0.02em; }
.srv-pillars span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.srv-card .btn { align-self: flex-start; margin-top: 4px; }
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; gap: 32px; }
  .srv-side { position: static; }
  .srv-list { grid-template-columns: 1fr; }
  .srv-pillars { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-cream); }
.ts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ts-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s, box-shadow .3s;
}
.ts-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.ts-stars { font-size: 14px; letter-spacing: 2px; color: var(--accent); }
.ts-quote { font-family: 'Bricolage Grotesque'; font-weight: 500; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.4; letter-spacing: -0.015em; color: var(--ink); }
.ts-foot { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding-top: 18px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.ts-foot > div { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.ts-foot strong { display: block; font-size: 14px; line-height: 1.3; }
.ts-foot span { font-size: 12px; color: var(--muted); line-height: 1.3; }
.ts-tag {
  padding: 6px 12px; border-radius: 999px;
  background: var(--lime);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  align-self: end;
  flex-shrink: 0;
}
@media (max-width: 880px) { .ts-grid { grid-template-columns: 1fr; } }

/* ===== CONSULT CTA ===== */
.ccta-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.ccta-shape { position: absolute; border-radius: 50%; pointer-events: none; }
.ccta-shape-1 { width: 280px; height: 280px; background: var(--accent); opacity: .35; left: -80px; bottom: -80px; filter: blur(40px); }
.ccta-shape-2 { width: 160px; height: 160px; background: var(--lime); opacity: .25; right: 30%; top: -40px; filter: blur(30px); }
.ccta-shape-3 { width: 60px; height: 60px; background: var(--accent); right: 10%; bottom: 8%; }
.ccta-left { position: relative; z-index: 2; }
.ccta-h { color: var(--bg); font-size: clamp(40px, 5.5vw, 84px); margin-top: 24px; line-height: 0.95; }
.ccta-sub { margin-top: 24px; font-size: 17px; line-height: 1.55; color: rgba(250,247,242,0.78); max-width: 460px; }
.ccta-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.ccta-actions .btn-primary { background: var(--accent); color: white; }
.ccta-actions .btn-primary:hover { background: var(--bg); color: var(--ink); }
.ccta-actions .btn-soft { background: transparent; border-color: rgba(250,247,242,0.2); color: var(--bg); }
.ccta-actions .btn-soft:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.ccta-trust {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex; align-items: center; gap: 16px;
}
.ccta-avs { display: flex; }
.ccta-avs img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--ink); margin-left: -8px;
}
.ccta-avs img:first-child { margin-left: 0; }
.ccta-trust-t { font-size: 14px; color: rgba(250,247,242,0.65); }
.ccta-trust-t strong { color: var(--bg); font-weight: 600; }
.ccta-right { position: relative; z-index: 2; }
.ccta-options { display: flex; flex-direction: column; gap: 10px; }
.ccta-opt {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(250,247,242,0.06);
  border: 1px solid rgba(250,247,242,0.1);
  border-radius: var(--radius-sm);
  transition: all .25s;
  position: relative;
  color: var(--bg);
}
.ccta-opt:hover { background: var(--accent); border-color: var(--accent); transform: translateX(4px); }
.ccta-opt-feat { background: var(--bg); color: var(--ink); border-color: var(--bg); }
.ccta-opt-feat:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.ccta-opt-feat-mark {
  position: absolute; right: 16px; top: -10px;
  padding: 4px 10px;
  background: var(--accent); color: white;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  border-radius: 4px;
}
.ccta-opt-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 4px;
}
.ccta-opt h4 {
  font-family: 'Bricolage Grotesque'; font-weight: 700;
  font-size: 18px; letter-spacing: -0.02em;
  color: inherit;
}
.ccta-opt p { font-size: 13px; opacity: 0.72; margin-top: 4px; }
.ccta-opt-r { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
@media (max-width: 980px) {
  .ccta-card { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .ccta-opt { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px; }
  .ccta-opt-r { width: 100%; justify-content: space-between; }
}

/* ===== BLOG ARCHIVE ===== */
.blog-hero { padding: 140px 0 48px; }
.blog-h { font-size: clamp(48px, 7vw, 96px); margin-top: 18px; line-height: 0.95; max-width: 900px; }
.blog-sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 580px; line-height: 1.55; }

.blog-cats { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 64px; background: rgba(250,247,242,0.92); backdrop-filter: blur(12px); z-index: 10; }
.blog-cats-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex-wrap: wrap; }
.blog-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  text-decoration: none;
  transition: all .2s;
}
.blog-cat:hover, .blog-cat.current { border-color: var(--ink); color: var(--ink); }
.blog-cat.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.blog-list { padding: 64px 0 96px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
.post-card { display: flex; flex-direction: column; gap: 16px; }
.post-card-cover { aspect-ratio: 4/3; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-cream); }
.post-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.post-card:hover .post-card-cover img { transform: scale(1.04); }
.post-card-body { display: flex; flex-direction: column; gap: 10px; }
.post-card-cat {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.post-card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; letter-spacing: -0.02em;
  font-size: 22px; line-height: 1.2;
  color: var(--ink);
}
.post-card:hover .post-card-title { color: var(--accent); }
.post-card-excerpt { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.post-card-meta { display: flex; gap: 8px; font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } .blog-cats { top: 56px; } }

/* ===== BLOG SINGLE ===== */
.post-narrow { max-width: 760px; }
.post-header { padding: 130px 0 32px; }
.post-crumb a { font-size: 13px; color: var(--muted); }
.post-crumb a:hover { color: var(--ink); }
.post-cat {
  display: inline-block; margin-top: 28px;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
.post-title { font-size: clamp(36px, 5.5vw, 64px); line-height: 1.05; margin-top: 18px; }
.post-lede { margin-top: 24px; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.5; color: var(--ink-soft); }
.post-meta { margin-top: 32px; display: flex; align-items: center; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.post-author-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.post-author-n { display: block; font-weight: 600; font-size: 14px; }
.post-author-r { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.post-cover { margin: 32px 0 48px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-content { font-size: 18px; line-height: 1.7; color: var(--ink-soft); }
.post-content > p { margin-bottom: 24px; }
.post-content h2 { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: clamp(26px, 3vw, 36px); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); margin: 48px 0 20px; }
.post-content ul { margin: 0 0 24px; padding-left: 22px; }
.post-content ul li { margin-bottom: 10px; }
.post-content strong { color: var(--ink); font-weight: 600; }
.post-content blockquote { margin: 32px 0; padding: 24px 28px; border-left: 3px solid var(--accent); background: var(--bg-warm); border-radius: 0 12px 12px 0; font-family: 'Instrument Serif', serif; font-style: italic; font-size: clamp(20px, 2vw, 26px); line-height: 1.35; color: var(--ink); }
.post-footer { margin-top: 48px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags-l { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.post-tags a { font-size: 12px; padding: 4px 10px; background: var(--bg-cream); border-radius: 999px; color: var(--ink-soft); }
.post-tags a:hover { background: var(--ink); color: var(--bg); }
.post-author-card { margin: 56px 0; padding: 32px; background: var(--bg-warm); border-radius: var(--radius); display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; }
.post-author-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.post-ac-l { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.post-author-card h3 { margin: 6px 0 12px; font-size: 22px; }
.post-author-card p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 12px; }
.related { padding: 64px 0 96px; border-top: 1px solid var(--line); }
.related-h { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { display: flex; flex-direction: column; gap: 12px; color: var(--ink); }
.related-cover { aspect-ratio: 16/10; border-radius: var(--radius-sm); overflow: hidden; background: var(--bg-cream); }
.related-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.related-card:hover .related-cover img { transform: scale(1.04); }
.related-cat { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.related-card h3 { font-size: 18px; line-height: 1.25; }
.related-card:hover h3 { color: var(--accent); }
.related-meta { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) {
  .related-grid { grid-template-columns: 1fr; }
  .post-footer { flex-direction: column; align-items: flex-start; }
  .post-author-card { grid-template-columns: 1fr; }
}

/* ===== PROMPT LIBRARY ===== */
.pl-hero { padding: 140px 0 48px; }
.pl-h { font-size: clamp(48px, 7vw, 96px); margin-top: 18px; line-height: 0.95; max-width: 900px; }
.pl-sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 580px; line-height: 1.55; }
.pl-cats { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 64px; background: rgba(250,247,242,0.92); backdrop-filter: blur(12px); z-index: 10; }
.pl-cats-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex-wrap: wrap; }
.pl-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  text-decoration: none;
  transition: all .2s;
}
.pl-cat:hover { border-color: var(--ink); color: var(--ink); }
.pl-cat.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pl-list { padding: 40px 0 96px; }
.pl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.pl-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pl-card:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-1); }
.pl-card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pl-card-cat { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pl-card-uses { font-size: 12px; color: var(--muted); }
.pl-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 22px; line-height: 1.2; color: var(--ink); }
.pl-card-excerpt { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.pl-card-code {
  margin: 4px 0 0;
  padding: 14px 16px;
  background: var(--bg-cream);
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 130px;
  overflow: hidden;
  position: relative;
}
.pl-card-code::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40px;
  background: linear-gradient(transparent, var(--bg-cream));
  pointer-events: none;
}
.pl-card-foot { margin-top: auto; padding-top: 8px; display: flex; justify-content: space-between; align-items: center; }
.pl-card-model { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.pl-copy {
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  transition: background .2s;
  cursor: pointer;
  border: 0;
}
.pl-copy:hover { background: var(--accent); }
@media (max-width: 760px) { .pl-grid { grid-template-columns: 1fr; } .pl-cats { top: 56px; } }

/* ===== VIDEOS ===== */
.vd-hero { padding: 140px 0 48px; }
.vd-h { font-size: clamp(56px, 9vw, 128px); margin-top: 18px; line-height: 0.95; }
.vd-sub { margin-top: 22px; font-size: 18px; color: var(--ink-soft); max-width: 540px; line-height: 1.55; }
.vd-list { padding: 24px 0 96px; }
.vd-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vd-card {
  display: flex; flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.vd-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-1); }
.vd-thumb { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-cream); }
.vd-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.vd-card:hover .vd-thumb img { transform: scale(1.05); }
.vd-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  transition: transform .3s, background .3s;
}
.vd-card:hover .vd-play { transform: translate(-50%, -50%) scale(1.08); background: var(--ink); }
.vd-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 6px 12px;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(14,14,16,0.7); color: white;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.vd-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 12px; }
.vd-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.vd-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 24px; line-height: 1.2; color: var(--ink); }
.vd-cta { margin-top: 6px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.vd-card:hover .vd-cta { color: var(--accent); }
.vd-foot {
  margin-top: 56px; padding: 32px;
  background: var(--bg-warm); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; font-size: 17px; color: var(--ink);
}
@media (max-width: 760px) { .vd-grid { grid-template-columns: 1fr; gap: 16px; } .vd-foot { flex-direction: column; align-items: flex-start; padding: 24px; } }

/* ===== EVENTS ===== */
.ev-hero { padding: 140px 0 32px; }
.ev-h { font-size: clamp(56px, 9vw, 128px); margin-top: 18px; line-height: 0.95; }
.ev-sub { margin-top: 22px; font-size: 18px; color: var(--ink-soft); max-width: 540px; line-height: 1.55; }
.ev-board { padding: 32px 0 96px; background: var(--bg-warm); }
.ev-list { display: flex; flex-direction: column; gap: 48px; }
.ev-clip {
  position: relative;
  background: #FBF7EE;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05), 0 18px 28px -16px rgba(0,0,0,0.18), inset 0 0 80px rgba(120,95,50,0.05);
  max-width: 820px;
  margin: 0 auto;
}
.ev-clip:nth-child(even) { margin-left: 6%; }
.ev-clip:nth-child(odd) { margin-right: 6%; }
.ev-clip::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.012) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.ev-tape {
  position: absolute; top: -14px;
  width: 80px; height: 22px;
  background: rgba(255,215,120,0.7);
  border: 1px solid rgba(180,140,60,0.25);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.ev-tape-l { left: 18px; transform: rotate(-6deg); }
.ev-tape-r { right: 18px; transform: rotate(5deg); }
.ev-masthead {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 18px;
}
.ev-paper {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 900;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink);
}
.ev-edition {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(0,0,0,0.6);
}
.ev-body { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
.ev-text { display: flex; flex-direction: column; gap: 10px; }
.ev-kicker { font-size: 11px; letter-spacing: 0.18em; color: var(--accent); font-weight: 700; }
.ev-headline {
  font-family: 'Georgia', 'Times New Roman', serif; font-weight: 900;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.05;
  letter-spacing: -0.01em; color: var(--ink);
}
.ev-deck { font-style: italic; font-weight: 700; font-size: 16px; color: rgba(0,0,0,0.7); line-height: 1.35; }
.ev-copy { font-size: 14.5px; line-height: 1.55; color: rgba(0,0,0,0.78); margin-top: 4px; }
.ev-meta { margin-top: 10px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.6); }
.ev-dot { opacity: .5; }
.ev-photo { margin: 0; align-self: start; background: #fff; padding: 8px 8px 12px; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 6px 14px rgba(0,0,0,0.08); }
.ev-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(100%) contrast(1.05); }
.ev-photo figcaption { margin-top: 8px; font-size: 11px; letter-spacing: 0.06em; color: rgba(0,0,0,0.55); text-align: center; }
.ev-foot {
  margin-top: 64px; padding: 28px; background: white;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; font-size: 17px;
}
@media (max-width: 760px) {
  .ev-clip { padding: 22px 20px 20px; }
  .ev-clip:nth-child(even), .ev-clip:nth-child(odd) { margin: 0; }
  .ev-body { grid-template-columns: 1fr; gap: 18px; }
  .ev-foot { flex-direction: column; align-items: flex-start; padding: 22px; }
}

/* ===== COURSES ===== */
.cr-hero { padding: 140px 0 48px; }
.cr-h { font-size: clamp(48px, 7vw, 96px); margin-top: 18px; line-height: 0.95; max-width: 900px; }
.cr-sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 580px; line-height: 1.55; }
.cr-stats { margin-top: 40px; display: flex; gap: 48px; flex-wrap: wrap; }
.cr-stats > div { display: flex; flex-direction: column; gap: 4px; }
.cr-stat-n { font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 28px; letter-spacing: -0.03em; }
.cr-stat-l { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.cr-filters { padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: sticky; top: 64px; background: rgba(250,247,242,0.92); backdrop-filter: blur(12px); z-index: 10; }
.cr-filters-row { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex-wrap: wrap; }
.cr-filter { padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-soft); white-space: nowrap; flex-shrink: 0; transition: all .2s; text-decoration: none; }
.cr-filter:hover { border-color: var(--ink); color: var(--ink); }
.cr-filter.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.cr-list { padding: 56px 0 80px; }
.cr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.course-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  color: var(--ink); text-decoration: none;
}
.course-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-1); }
.course-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--bg-cream); }
.course-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.course-card:hover .course-cover img { transform: scale(1.04); }
.course-level {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--accent); color: white;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 999px;
}
.course-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.course-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; letter-spacing: -0.02em; font-size: 26px; line-height: 1.15; color: var(--ink); }
.course-excerpt { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.course-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.course-facts li { display: flex; flex-direction: column; gap: 2px; }
.course-facts li span { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.course-facts li strong { font-size: 13px; font-weight: 500; color: var(--ink); }
.course-highlights { display: flex; flex-wrap: wrap; gap: 6px; }
.course-pill { display: inline-block; padding: 5px 12px; background: var(--bg-cream); font-size: 12px; border-radius: 999px; color: var(--ink-soft); }
.course-cta { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cr-foot { padding: 0 0 96px; }
.cr-foot-card { padding: 48px; background: var(--bg-warm); border-radius: var(--radius-lg); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.cr-foot-card h2 { font-size: clamp(28px, 3.5vw, 44px); }
.cr-foot-card p { margin-top: 14px; font-size: 16px; color: var(--ink-soft); line-height: 1.55; max-width: 520px; }
@media (max-width: 880px) {
  .cr-grid { grid-template-columns: 1fr; }
  .cr-foot-card { grid-template-columns: 1fr; padding: 32px; }
  .cr-filters { top: 56px; }
}

/* ===== CONTACT ===== */
.ct-hero { padding: 140px 0 48px; }
.ct-h { font-size: clamp(64px, 10vw, 144px); margin-top: 18px; line-height: 0.92; }
.ct-sub { margin-top: 24px; font-size: 18px; color: var(--ink-soft); max-width: 520px; line-height: 1.55; }
.ct-main { padding: 24px 0 96px; }
.ct-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; align-items: start; }
.ct-form-col { background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.ct-form { display: flex; flex-direction: column; gap: 22px; }
.ct-l { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 8px; }
.ct-l em { font-style: normal; color: var(--muted); font-weight: 400; }
.ct-form input, .ct-form textarea, .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.ct-form input:focus, .ct-form textarea:focus, .wpcf7 input:focus, .wpcf7 textarea:focus { outline: 0; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(14,14,16,0.06); }
.ct-form textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.ct-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-topics-row { display: flex; flex-wrap: wrap; gap: 8px; }
.ct-topic {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: all .2s;
  cursor: pointer;
}
.ct-topic:hover { border-color: var(--ink); color: var(--ink); }
.ct-topic.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.ct-submit { width: 100%; justify-content: center; padding: 16px; margin-top: 4px; }
.ct-fine { display: block; font-size: 12px; color: var(--muted); text-align: center; }
.ct-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
.ct-card { padding: 24px; background: var(--bg-warm); border-radius: var(--radius); }
.ct-card-eb { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 14px; }
.ct-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.ct-card li { display: flex; flex-direction: column; gap: 2px; }
.ct-li-l { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ct-card li a, .ct-card li span:not(.ct-li-l) { font-size: 15px; color: var(--ink); font-weight: 500; }
.ct-card li a:hover { color: var(--accent); }
.ct-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.ct-social { padding: 24px; background: var(--ink); color: var(--bg); border-radius: var(--radius); }
.ct-social .ct-card-eb { color: rgba(250,247,242,0.5); }
.ct-social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ct-social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,247,242,0.08);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 500;
  color: var(--bg); transition: background .2s;
}
.ct-social-row a:hover { background: var(--accent); }
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 32px; }
  .ct-side { position: static; }
  .ct-row { grid-template-columns: 1fr; }
  .ct-form-col { padding: 24px; }
}

/* ===== CONSULTING PAGE ===== */
.cph { padding: 150px 0 80px; position: relative; overflow: hidden; }
.cph-bg { position: absolute; inset: 0; pointer-events: none; }
.cph-inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.cph-flag { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cph-flag-t { font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }
.cph-h { font-size: clamp(48px, 7.5vw, 110px); line-height: 0.92; margin-top: 24px; }
.cph-lede { margin-top: 32px; font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 540px; }
.cph-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.cph-trust { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.cph-trust-row { display: flex; align-items: center; gap: 16px; }
.cph-avs { display: flex; }
.cph-avs img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-left: -10px; }
.cph-avs img:first-child { margin-left: 0; }
.cph-trust-stars { font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.cph-trust-stars span { color: var(--ink); font-weight: 600; margin-left: 6px; }
.cph-trust-l { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cph-right { position: relative; }
.cph-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-2); position: relative;
}
.cph-card-corner {
  position: absolute; right: -8px; top: -8px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lime); border: 3px solid var(--bg);
}
.cph-card-h { font-size: 28px; margin-top: 18px; line-height: 1.1; }
.cph-card-p { margin-top: 12px; font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.cph-card-list { margin: 24px 0; padding: 20px 0; border-top: 1px dashed var(--line); border-bottom: 1px dashed var(--line); display: flex; flex-direction: column; gap: 12px; }
.cph-card-item { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.cph-card-i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: white;
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.cph-card-btn { width: 100%; justify-content: center; padding: 14px; }
.cph-card-fine { display: block; margin-top: 14px; font-size: 12px; color: var(--muted); text-align: center; }
.cph-side { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cph-side-stat { padding: 16px; background: var(--bg-warm); border-radius: 14px; text-align: center; }
.cph-side-n { display: block; font-family: 'Bricolage Grotesque'; font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }
.cph-side-l { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.cpp-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.cpp-h { font-size: clamp(40px, 5.5vw, 80px); margin-top: 18px; }
.cpp-sub { margin-top: 24px; font-size: 17px; color: var(--ink-soft); line-height: 1.55; }
.cpp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.cpp-grid-4 { grid-template-columns: repeat(2, 1fr); }
.cpp-tier {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px;
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.cpp-tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.cpp-tier.feat {
  background: var(--ink); color: var(--bg);
  border-color: var(--ink); transform: translateY(-12px);
  box-shadow: var(--shadow-2);
}
.cpp-tier.feat:hover { transform: translateY(-16px); }
.cpp-tier.feat .cpp-tier-n { color: var(--bg); }
.cpp-mark {
  position: absolute; top: -14px; left: 32px;
  padding: 6px 12px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  border-radius: 6px;
}
.cpp-tier-sub { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.cpp-tier.feat .cpp-tier-sub { color: rgba(250,247,242,0.5); }
.cpp-tier-n { font-size: 26px; line-height: 1.15; margin-top: 8px; }
.cpp-tier-tag { margin-top: 8px; font-family: 'Instrument Serif', serif; font-size: 18px; font-style: italic; color: var(--accent); }
.cpp-tier-desc { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 14px; line-height: 1.55; opacity: 0.8; }
.cpp-tier.feat .cpp-tier-desc { border-color: rgba(250,247,242,0.12); }
.cpp-tier-best { margin-top: 18px; padding: 14px 16px; background: var(--bg-warm); border-radius: 10px; font-size: 13px; line-height: 1.5; }
.cpp-tier.feat .cpp-tier-best { background: rgba(255,91,31,0.1); }
.cpp-best-l { display: block; font-weight: 700; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.cpp-perks { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.cpp-perks li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.4; }
.cpp-check {
  width: 20px; height: 20px; background: var(--accent); color: white;
  border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0; margin-top: 2px;
}
.cpp-cta { width: 100%; justify-content: center; padding: 16px; }
.cpp-tier.feat .cpp-cta { background: var(--accent); }
.cpp-tier.feat .cpp-cta:hover { background: var(--lime); color: var(--ink); }
.cpp-foot {
  margin-top: 56px; padding: 24px 28px;
  background: var(--bg-warm); border-radius: var(--radius);
  display: flex; align-items: center; gap: 16px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.cpp-foot span:first-child { font-size: 24px; flex-shrink: 0; }
.cpp-foot p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 980px) {
  .cph-inner { grid-template-columns: 1fr; gap: 40px; }
  .cph { padding: 120px 0 60px; }
  .cpp-grid, .cpp-grid-4 { grid-template-columns: 1fr; }
  .cpp-tier.feat { transform: none; }
  .cpp-tier.feat:hover { transform: translateY(-4px); }
}

/* ===== ABOUT PAGE ===== */
.ab-hero { padding: 160px 0 100px; position: relative; overflow: hidden; }
.ab-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.ab-hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
.ab-hero-h { font-size: clamp(48px, 7vw, 110px); line-height: 0.92; margin-top: 18px; }
.ab-hero-lede { margin-top: 32px; font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 520px; }
.ab-hero-lede strong { font-weight: 600; color: var(--ink); }
.ab-hero-meta {
  margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px 32px; max-width: 520px;
  padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ab-meta { display: flex; flex-direction: column; gap: 4px; }
.ab-meta-k { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.ab-meta-v { font-size: 15px; font-weight: 500; }
.ab-hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.ab-hero-right { position: relative; min-height: 560px; }
.ab-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; height: 580px; }
.ab-tile { position: relative; border-radius: 24px; overflow: hidden; background: var(--bg-cream); box-shadow: var(--shadow-1); }
.ab-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.ab-tile:hover img { transform: scale(1.04); }
.ab-tile-tag {
  position: absolute; left: 12px; bottom: 12px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.ab-tile-a { grid-row: 1 / 3; }
.ab-tile-b { transform: translateY(-22px); }
.ab-tile-d { grid-column: 1 / 3; height: 200px; }
@media (min-width: 1001px) {
  .ab-mosaic { grid-template-columns: 1.15fr .85fr; grid-template-rows: 240px 240px 200px; height: auto; }
  .ab-tile-a { grid-row: 1 / 3; }
  .ab-tile-b { grid-column: 2; grid-row: 1; }
  .ab-tile-c { grid-column: 2; grid-row: 2; }
  .ab-tile-d { grid-column: 1 / 3; grid-row: 3; height: auto; }
}
.ab-sticker {
  position: absolute; right: -8px; top: -22px;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transform: rotate(-12deg); box-shadow: var(--shadow-2);
  border: 4px solid var(--bg); z-index: 4;
  animation: floaty 4s ease-in-out infinite;
}
.ab-sticker > span { display: block; line-height: 1.1; }
@keyframes floaty {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-6px); }
}
@media (max-width: 1000px) {
  .ab-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ab-hero { padding: 120px 0 60px; }
  .ab-hero-right { min-height: auto; }
  .ab-tile-b, .ab-tile-c { transform: none; }
}
@media (max-width: 560px) {
  .ab-hero-meta { grid-template-columns: 1fr; }
  .ab-mosaic { height: 480px; gap: 10px; }
  .ab-sticker { width: 96px; height: 96px; font-size: 11px; right: 0; top: -18px; }
}
.ab-story { padding: clamp(80px, 10vw, 160px) 0; position: relative; }
.ab-story-head { max-width: 760px; margin-bottom: 80px; }
.ab-story-lede { margin-top: 24px; font-size: 19px; line-height: 1.6; color: var(--ink-soft); max-width: 600px; }
.ab-story-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.ab-toc { position: sticky; top: 110px; }
.ab-toc-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ab-toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line); }
.ab-toc li a {
  display: flex; gap: 14px; padding: 12px 14px; margin-left: -1px;
  border-left: 1px solid transparent; font-size: 13px; color: var(--muted);
  align-items: baseline; transition: color .25s, border-color .25s;
}
.ab-toc li a:hover { color: var(--ink); }
.ab-toc li.on a { color: var(--ink); border-left-color: var(--accent); }
.ab-toc-no { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 12px; color: var(--accent); width: 22px; flex-shrink: 0; }
.ab-toc-tt { font-weight: 500; line-height: 1.35; }
.ab-chapters { display: flex; flex-direction: column; gap: 80px; }
.ab-chapter { max-width: 700px; }
.ab-ch-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.ab-ch-no { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 56px; line-height: 1; color: var(--accent); letter-spacing: -0.04em; }
.ab-ch-year { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: white; }
.ab-ch-title { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin-bottom: 22px; max-width: 620px; }
.ab-ch-p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 16px; }
.ab-ch-p strong { color: var(--ink); font-weight: 600; }
.ab-ch-sep { margin-top: 56px; opacity: .4; }
@media (max-width: 980px) {
  .ab-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .ab-toc { position: relative; top: 0; padding: 16px 18px; background: white; border: 1px solid var(--line); border-radius: 18px; }
  .ab-toc ol { border-left: 0; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .ab-toc li a { padding: 8px 12px; border-radius: 999px; border-left: 0; border: 1px solid transparent; }
  .ab-toc li.on a { border-color: var(--accent); color: var(--ink); }
  .ab-toc-tt { display: none; }
  .ab-toc-no { width: auto; font-size: 13px; }
  .ab-chapters { gap: 64px; }
}

/* ===== PAGE GENERIC ===== */
.page-hero { padding: 140px 0 64px; }
.page-hero h1 { margin-top: 18px; }
.page-content { padding: 64px 0 96px; }
.page-content img { border-radius: var(--radius); margin: 24px 0; }

/* ===== PAGINATION ===== */
.blog-pag, .pl-pag {
  margin-top: 80px; padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.pagination { display: flex; gap: 4px; align-items: center; }
.pagination .page-numbers {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; color: var(--muted);
  border: 1px solid transparent;
  transition: all .2s;
}
.pagination .page-numbers:hover { background: var(--bg-cream); color: var(--ink); }
.pagination .page-numbers.current { background: var(--ink); color: var(--bg); }
.pagination .prev, .pagination .next { width: auto; padding: 0 16px; font-size: 14px; font-weight: 500; }

/* ===== WP COMMENTS ===== */
.comments-area { padding: 48px 0; border-top: 1px solid var(--line); }
.comments-title { font-size: 28px; margin-bottom: 32px; }
.comment-list { list-style: none; padding: 0; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--line); }
.comment-author .fn { font-weight: 600; font-size: 14px; }
.comment-metadata { font-size: 12px; color: var(--muted); margin-top: 4px; }
.comment-content { margin-top: 12px; font-size: 15px; line-height: 1.6; }
.comment-reply-link { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 8px; display: inline-block; }

/* ===== CF7 STYLES ===== */
.wpcf7 { margin-top: 24px; }
.wpcf7 .wpcf7-form { display: flex; flex-direction: column; gap: 18px; }
.wpcf7 input[type="submit"] {
  background: var(--accent); color: white;
  border: 0; border-radius: 999px;
  padding: 16px 32px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  align-self: flex-start;
}
.wpcf7 input[type="submit"]:hover { background: var(--ink); }
.wpcf7-not-valid-tip { color: #e53e3e; font-size: 12px; margin-top: 4px; }
.wpcf7-response-output { padding: 14px 18px; border-radius: 12px; font-size: 14px; margin-top: 16px; }
.wpcf7-mail-sent-ok { background: #f0fdf4; border: 1px solid #86efac; color: #16a34a; }
.wpcf7-mail-sent-ng, .wpcf7-spam-blocked { background: #fff1f2; border: 1px solid #fca5a5; color: #dc2626; }

/* ===== SINGLE CPT ===== */
.single-cpt { padding: 140px 0 64px; }
.single-cpt-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.single-cpt-meta span {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  background: var(--bg-cream); color: var(--ink);
  border: 1px solid var(--line);
}
.single-cpt-cover { margin: 32px 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; }
.single-cpt-cover img { width: 100%; height: 100%; object-fit: cover; }
.single-cpt-content { max-width: 760px; font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.single-cpt-content h2 { font-size: clamp(24px, 2.8vw, 36px); color: var(--ink); margin: 40px 0 16px; }
.single-cpt-content p { margin-bottom: 20px; }

/* ===== PROMPT SINGLE ===== */
.prompt-single { padding: 140px 0 96px; }
.prompt-body-wrap { max-width: 860px; }
.prompt-code-block {
  background: var(--bg-cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; line-height: 1.7;
  color: var(--ink); white-space: pre-wrap;
  word-break: break-word;
  position: relative; margin: 24px 0;
}
.prompt-copy-btn {
  position: absolute; top: 16px; right: 16px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-size: 13px; font-weight: 600;
  border: 0; cursor: pointer; transition: background .2s;
}
.prompt-copy-btn:hover { background: var(--accent); }
.prompt-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.prompt-tag { padding: 5px 12px; background: var(--bg-cream); border-radius: 999px; font-size: 12px; color: var(--ink-soft); }

/* ===== PAGE TEMPLATES ===== */
.pt-body { padding-top: 100px; }

/* ================================================================
   PROMPT SINGLE PAGE
================================================================ */

/* Hero */
.psh { padding: 130px 0 40px; }
.psh-crumb { display:flex; gap:8px; font-size:13px; color:var(--muted); margin-bottom:32px; }
.psh-crumb a:hover { color:var(--ink); }
.psh-crumb span { color:var(--line); }
.psh-flag { display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.psh-rating { font-size:13px; color:var(--accent); letter-spacing:.06em; }
.psh-rating span { color:var(--muted); margin-left:6px; font-size:12px; }
.psh-h { font-size:clamp(48px,7.2vw,110px); line-height:.92; margin-top:16px; }
.psh-lede { margin-top:32px; font-size:clamp(18px,1.6vw,22px); line-height:1.5; max-width:760px; color:var(--ink-soft); font-family:'Instrument Serif',serif; font-style:italic; }
.psh-meta { margin-top:48px; padding:24px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:grid; grid-template-columns:repeat(5,1fr); gap:24px; }
.psh-meta-i { display:flex; flex-direction:column; gap:6px; }
.psh-meta-l { font-family:'JetBrains Mono',monospace; font-size:10.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--muted); }
.psh-meta-v { font-size:14px; font-weight:500; color:var(--ink); }
@media(max-width:880px){ .psh-meta { grid-template-columns:1fr 1fr; } }

/* Prompt block */
.psp-head { text-align:center; margin-bottom:40px; max-width:720px; margin-left:auto; margin-right:auto; }
.psp-h { font-size:clamp(36px,5vw,64px); margin-top:14px; }
.psp-card { background:var(--ink); color:var(--bg); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-2); }
.psp-bar { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:18px 24px; background:rgba(250,247,242,.04); border-bottom:1px solid rgba(250,247,242,.08); flex-wrap:wrap; }
.psp-tabs { display:flex; gap:4px; padding:4px; background:rgba(250,247,242,.06); border-radius:10px; }
.psp-tab { padding:8px 14px; border-radius:7px; font-size:13px; font-weight:500; color:rgba(250,247,242,.6); }
.psp-tab.on { background:var(--bg); color:var(--ink); }
.psp-bar-r { display:flex; align-items:center; gap:12px; }
.psp-meta-pill { font-family:'JetBrains Mono',monospace; font-size:11px; color:rgba(250,247,242,.5); padding:6px 10px; background:rgba(250,247,242,.04); border-radius:6px; letter-spacing:.06em; }
.psp-copy { display:inline-flex; align-items:center; gap:8px; padding:10px 16px; background:var(--accent); color:white; border-radius:8px; font-size:13px; font-weight:600; transition:background .25s; }
.psp-copy:hover { background:var(--lime); color:var(--ink); }
.psp-copy-icon { font-size:14px; }
.psp-text { margin:0; padding:36px 40px; font-family:'JetBrains Mono',monospace; font-size:14px; line-height:1.7; color:rgba(250,247,242,.92); white-space:pre-wrap; max-height:580px; overflow-y:auto; }
.psp-text::-webkit-scrollbar { width:6px; }
.psp-text::-webkit-scrollbar-thumb { background:rgba(250,247,242,.15); border-radius:3px; }
.psp-foot { padding:16px 24px; background:rgba(250,247,242,.04); border-top:1px solid rgba(250,247,242,.08); display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.psp-foot-l { font-family:'JetBrains Mono',monospace; font-size:10.5px; font-weight:600; letter-spacing:.16em; color:rgba(250,247,242,.4); }
.psp-foot-models { display:flex; gap:6px; flex-wrap:wrap; }
.psp-model { padding:4px 10px; background:rgba(250,247,242,.06); border-radius:6px; font-family:'JetBrains Mono',monospace; font-size:11px; color:rgba(250,247,242,.7); }
@media(max-width:720px){ .psp-bar { padding:14px 16px; } .psp-text { padding:24px; font-size:12.5px; } }

/* How to use */
.pshw-head { display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:end; margin-bottom:48px; }
.pshw-h { font-size:clamp(36px,5vw,72px); margin-top:16px; }
.pshw-sub { font-size:17px; color:var(--ink-soft); line-height:1.5; }
.pshw-content { max-width:820px; font-size:17px; line-height:1.7; color:var(--ink-soft); }
.pshw-content h2,.pshw-content h3 { color:var(--ink); margin:32px 0 12px; }
.pshw-content p { margin-bottom:16px; }
.pshw-content ol,.pshw-content ul { padding-left:24px; margin-bottom:16px; }
.pshw-content li { margin-bottom:8px; }
@media(max-width:880px){ .pshw-head { grid-template-columns:1fr; gap:16px; } }

/* Use cases */
.psv-head { margin-bottom:40px; max-width:720px; }
.psv-h { font-size:clamp(36px,5vw,64px); margin-top:14px; }
.psv-grid { display:flex; flex-wrap:wrap; gap:12px; }
.psv-tag { display:inline-flex; align-items:center; gap:10px; padding:14px 20px; background:white; border:1px solid var(--line); border-radius:var(--radius-sm); font-size:15px; font-weight:500; color:var(--ink); transition:border-color .2s,transform .2s; }
.psv-tag:hover { border-color:var(--accent); transform:translateY(-2px); }
.psv-i { color:var(--accent); font-size:12px; }

/* Sample output */
.pso-head { margin-bottom:40px; max-width:760px; }
.pso-h { font-size:clamp(36px,5vw,64px); margin-top:14px; }
.pso-sub { margin-top:18px; font-size:16px; color:var(--ink-soft); line-height:1.5; }
.pso-card { background:white; border:1px solid var(--line); border-radius:var(--radius-lg); overflow:hidden; }
.pso-card-h { padding:18px 28px; background:var(--bg-cream); border-bottom:1px solid var(--line); display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.pso-card-tag { font-family:'JetBrains Mono',monospace; font-size:11px; font-weight:600; letter-spacing:.12em; color:var(--ink-soft); }
.pso-card-r { font-family:'JetBrains Mono',monospace; font-size:11px; color:var(--muted); }
.pso-body { padding:28px 32px; }
.pso-pre { margin:0; font-family:'JetBrains Mono',monospace; font-size:14px; line-height:1.7; color:var(--ink); white-space:pre-wrap; word-break:break-word; background:var(--bg-cream); padding:24px; border-radius:var(--radius-sm); border-left:4px solid var(--accent); }

/* Pro tips + mistakes */
.pst-grid { display:grid; grid-template-columns:1.3fr 1fr; gap:16px; }
.pst-tips,.pst-mist { padding:48px; border-radius:var(--radius-lg); }
.pst-tips { background:var(--bg-warm); }
.pst-mist { background:var(--ink); color:var(--bg); }
.pst-h { font-size:clamp(32px,4.5vw,52px); margin-top:16px; }
.pst-h-w { color:var(--bg); }
.pst-list { list-style:none; padding:0; margin:32px 0 0; display:flex; flex-direction:column; gap:0; }
.pst-list li { display:flex; gap:16px; align-items:flex-start; padding:18px 0; border-top:1px dashed rgba(14,14,16,.12); }
.pst-list li:first-child { border-top:0; padding-top:0; }
.pst-i { width:36px; height:36px; border-radius:50%; background:var(--accent); color:white; display:grid; place-items:center; font-size:16px; flex-shrink:0; }
.pst-list p { font-size:14px; line-height:1.55; color:var(--ink-soft); margin:0; }
.pst-mist-list { list-style:none; padding:0; margin:32px 0 0; display:flex; flex-direction:column; gap:0; }
.pst-mist-list li { display:flex; gap:12px; align-items:flex-start; padding:14px 0; border-top:1px solid rgba(250,247,242,.08); font-size:14px; line-height:1.5; color:rgba(250,247,242,.85); }
.pst-mist-list li:first-child { border-top:0; padding-top:0; }
.pst-x { width:22px; height:22px; border-radius:50%; background:rgba(250,247,242,.1); color:var(--lime); display:grid; place-items:center; flex-shrink:0; font-weight:700; }
@media(max-width:880px){ .pst-grid { grid-template-columns:1fr; } .pst-tips,.pst-mist { padding:32px; } }

/* Related prompts */
.psr-head { display:flex; justify-content:space-between; gap:32px; align-items:flex-end; margin-bottom:48px; flex-wrap:wrap; }
.psr-h { font-size:clamp(36px,5vw,64px); margin-top:14px; }
.psr-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.psr-card { padding:24px; background:white; border:1px solid var(--line); border-radius:var(--radius); display:flex; flex-direction:column; gap:12px; transition:transform .25s,border-color .25s,box-shadow .25s; }
.psr-card:hover { transform:translateY(-3px); border-color:var(--accent); box-shadow:var(--shadow-1); }
.psr-card header { display:flex; justify-content:space-between; align-items:center; }
.psr-cat { font-family:'JetBrains Mono',monospace; font-size:10.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--accent); }
.psr-arrow { width:28px; height:28px; border-radius:50%; background:var(--bg-cream); display:grid; place-items:center; color:var(--ink); transition:all .2s; }
.psr-card:hover .psr-arrow { background:var(--accent); color:white; }
.psr-card h3 { font-size:18px; line-height:1.2; flex:1; }
.psr-card p { font-size:13px; line-height:1.5; color:var(--ink-soft); }
.psr-card footer { display:flex; justify-content:space-between; padding-top:12px; border-top:1px dashed var(--line); font-family:'JetBrains Mono',monospace; font-size:11px; }
.psr-card footer span:first-child { color:var(--accent); }
.psr-card footer span:last-child { color:var(--muted); }
.psr-all { padding:28px; background:var(--ink); color:var(--bg); border:1px solid var(--ink); border-radius:var(--radius); display:flex; flex-direction:column; gap:14px; transition:transform .3s,background .25s; }
.psr-all:hover { transform:translateY(-3px); background:var(--accent); border-color:var(--accent); }
.psr-all-i { width:44px; height:44px; border-radius:50%; background:var(--accent); color:white; display:grid; place-items:center; font-size:24px; font-weight:700; }
.psr-all:hover .psr-all-i { background:var(--ink); }
.psr-all h3 { font-size:22px; line-height:1.15; color:var(--bg); }
.psr-all p { font-size:13px; color:rgba(250,247,242,.7); line-height:1.5; }
.psr-all-c { display:inline-flex; align-items:center; gap:6px; font-family:'JetBrains Mono',monospace; font-size:12px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--lime); }
@media(max-width:980px){ .psr-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:560px){ .psr-grid { grid-template-columns:1fr; } }

/* ================================================================
   BLOG & PROMPT SEARCH BOX
================================================================ */
.blog-search,
.pl-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 6px 20px 6px 16px;
  max-width: 480px;
  margin-top: 28px;
  transition: border-color .25s, box-shadow .25s;
}
.blog-search:focus-within,
.pl-search:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,91,31,0.1);
}
.blog-search svg,
.pl-search svg {
  color: var(--muted);
  flex-shrink: 0;
}
.blog-search input,
.pl-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 0;
}
.blog-search input::placeholder,
.pl-search input::placeholder {
  color: var(--muted);
}

/* ================================================================
   NEWSLETTER PLUGIN (The Newsletter Plugin / TNP)
================================================================ */
.tnp,
.tnp-subscription,
.widget_newsletter_widget .tnp {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}
.tnp-subscription form {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
}
/* Hide label */
.tnp-field label {
  display: none !important;
}
/* Input */
.tnp-field-email input[type="email"],
.tnp input[type="email"],
.tnp input[type="text"] {
  width: 100% !important;
  padding: 12px 18px !important;
  background: rgba(250,247,242,0.08) !important;
  border: 1.5px solid rgba(250,247,242,0.18) !important;
  border-radius: 999px !important;
  color: #FAF7F2 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  outline: none !important;
  transition: border-color .2s !important;
  box-sizing: border-box !important;
}
.tnp-field-email input[type="email"]::placeholder,
.tnp input[type="email"]::placeholder {
  color: rgba(250,247,242,0.4) !important;
}
.tnp-field-email input[type="email"]:focus,
.tnp input[type="email"]:focus {
  border-color: #FF5B1F !important;
}
/* Button */
.tnp-field-submit input[type="submit"],
.tnp input[type="submit"],
.tnp button[type="submit"] {
  width: 100% !important;
  padding: 12px 24px !important;
  background: #FF5B1F !important;
  color: white !important;
  border: none !important;
  border-radius: 999px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background .2s !important;
  letter-spacing: -0.01em !important;
  -webkit-appearance: none !important;
}
.tnp-field-submit input[type="submit"]:hover,
.tnp input[type="submit"]:hover {
  background: #0E0E10 !important;
}
/* Privacy text */
.tnp-privacy,
.tnp-privacy-note {
  font-size: 11px !important;
  color: rgba(250,247,242,0.4) !important;
  margin-top: 4px !important;
  line-height: 1.4 !important;
}
.tnp-privacy a {
  color: rgba(250,247,242,0.6) !important;
  text-decoration: underline !important;
}

/* ================================================================
   PROMPT CARD — fully clickable link fix
================================================================ */
a.pl-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
}
a.pl-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); border-color: #d8cfbf; }
a.pl-card:hover .pl-card-title { color: var(--accent); }
.pl-card-actions { display: flex; align-items: center; gap: 8px; }
.pl-view-link {
  font-size: 12px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
a.pl-card .pl-copy {
  /* keep copy button inside clickable card */
  position: relative;
  z-index: 2;
}

/* ================================================================
   PAGE NEWSLETTER SECTION (blog + prompt pages)
================================================================ */
.page-newsletter {
  padding: 96px 0;
  background: var(--ink);
}
.pnl-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pnl-h {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--bg);
  margin-top: 16px;
  line-height: 1.05;
}
.pnl-sub {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250,247,242,0.65);
}
.pnl-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pnl-perks li {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,247,242,0.75);
  letter-spacing: 0.02em;
}

/* Mailchimp form inside newsletter section */
.pnl-right .mc4wp-form,
.pnl-right form.pnl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pnl-right input[type="email"],
.pnl-right .mc4wp-form input[type="email"] {
  width: 100%;
  padding: 16px 20px;
  background: rgba(250,247,242,0.08);
  border: 1.5px solid rgba(250,247,242,0.18);
  border-radius: 999px;
  color: #FAF7F2;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.pnl-right input[type="email"]::placeholder,
.pnl-right .mc4wp-form input[type="email"]::placeholder {
  color: rgba(250,247,242,0.4);
}
.pnl-right input[type="email"]:focus,
.pnl-right .mc4wp-form input[type="email"]:focus {
  border-color: var(--accent);
}
.pnl-right input[type="submit"],
.pnl-right .mc4wp-form input[type="submit"],
.pnl-right button[type="submit"] {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  -webkit-appearance: none;
}
.pnl-right input[type="submit"]:hover,
.pnl-right .mc4wp-form input[type="submit"]:hover,
.pnl-right button[type="submit"]:hover {
  background: var(--lime);
  color: var(--ink);
}
.pnl-right .mc4wp-form label { display: none; }
.pnl-right .mc4wp-form p { margin: 0; }

@media (max-width: 880px) {
  .pnl-card { grid-template-columns: 1fr; gap: 40px; }
}
