/*
Theme Name:  HowToAI_Custom_Theme
Theme URI:   https://howtoai.xyz
Author:      Nilesh
Author URI:  https://howtoai.xyz
Description: Custom WordPress theme for HowToAI — Practical AI for Business Builders.
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: howtoai
Tags:        custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────── */
:root {
  --cream: #f8f4ed;
  --cream-2: #f0ebe1;
  --white: #fdfbf8;
  --ink: #1a1510;
  --ink-70: #3d3428;
  --ink-40: #8c7d6a;
  --ink-20: #c8bfb2;
  --ink-10: #e4dfd8;
  --ink-05: #f0ece6;
  --gold: #c07820;
  --gold-light: #fdf3e4;
  --gold-dim: rgba(192, 120, 32, 0.1);
  --gold-mid: rgba(192, 120, 32, 0.2);
  --gold-rich: #a06418;
  --dark: #181210;
  --dark-2: #221c14;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.72;
  font-size: 17px;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 8px var(--gold);
  }

  50% {
    box-shadow: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
   FLOATING PAGE NAV
───────────────────────────────────────── */
.page-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  gap: 6px;
  background: rgba(24, 18, 16, 0.9);
  backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
}

.page-nav a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}

.page-nav a:hover,
.page-nav a.active {
  background: var(--gold);
  color: white;
}

/* ─────────────────────────────────────────
   SITE NAV
───────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(248, 244, 237, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-10);
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
}

.nav-logo .logo-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
  animation: glow 2.5s ease-in-out infinite;
}

/* WordPress nav_menu output */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

/* wp_nav_menu wraps output in a <div> with a <ul> inside */
.site-nav nav>ul,
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav nav>ul>li>a,
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-40);
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav nav>ul>li>a:hover,
.nav-links a:hover {
  color: var(--ink);
}

/* "Subscribe" CTA nav item — add CSS class in WP Menu admin */
.site-nav nav>ul>li.menu-subscribe>a,
.nav-subscribe {
  background: var(--ink) !important;
  color: var(--cream) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s !important;
}

.site-nav nav>ul>li.menu-subscribe>a:hover,
.nav-subscribe:hover {
  background: var(--gold) !important;
  color: white !important;
}

/* ─────────────────────────────────────────
   SHARED SECTION TYPOGRAPHY
───────────────────────────────────────── */
.s-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--ink-40);
}

.s-title {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.s-title em {
  font-style: italic;
  color: var(--gold);
}

.s-sub {
  font-size: 17px;
  color: var(--ink-70);
  max-width: 540px;
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 52px;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: white;
  padding: 13px 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-rich);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--ink-20);
  color: var(--ink-40);
  padding: 13px 30px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
}

/* ─────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: white;
  padding: 52px 0 28px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.footer-brand h3 span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 240px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col ul li a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
}

.footer-eco {
  display: flex;
  gap: 18px;
}

.footer-eco a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-eco a:hover {
  color: var(--gold);
}

/* ─────────────────────────────────────────
   HOME PAGE
───────────────────────────────────────── */
.hero-home {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 52px 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 92vh;
}

.hero-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.5s ease both;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.hero-home h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-home h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub-text {
  font-size: 18px;
  color: var(--ink-70);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* Newsletter inline form */
.hero-signup {
  background: var(--white);
  border: 1.5px solid var(--ink-10);
  padding: 28px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-signup h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero-signup p {
  font-size: 13px;
  color: var(--ink-40);
  margin-bottom: 16px;
  font-weight: 300;
}

.signup-row {
  display: flex;
  gap: 8px;
}

.signup-row input {
  flex: 1;
  background: var(--cream);
  border: 1.5px solid var(--ink-10);
  color: var(--ink);
  padding: 10px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.signup-row input::placeholder {
  color: var(--ink-40);
}

.signup-row input:focus {
  border-color: var(--gold);
}

.signup-row button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.signup-row button:hover {
  background: var(--gold-rich);
}

.hero-signup .form-note {
  font-size: 11px;
  color: var(--ink-20);
  margin-top: 8px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.06em;
}

.hero-social {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-social span {
  font-size: 12px;
  color: var(--ink-40);
  font-weight: 500;
}

.social-link {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--ink-10);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Audience cards (hero right) */
.hero-right {
  animation: fadeUp 0.7s 0.2s ease both;
}

.audience-card {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 22px 24px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.audience-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.audience-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.2s;
}

.audience-card:hover::before {
  transform: scaleY(1);
}

.ac-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.audience-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--ink);
}

.audience-card p {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.55;
  font-weight: 300;
}

/* What-you-get strip */
.what-strip {
  background: var(--dark);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
}

.what-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.what-item .wi-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.what-item span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Featured content section */
.home-section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 52px;
  border-top: 1px solid var(--ink-10);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
}

.featured-post {
  background: var(--white);
  border: 1.5px solid var(--ink-10);
  padding: 36px 32px;
  transition: all 0.2s;
  cursor: pointer;
}

.featured-post:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(192, 120, 32, 0.08);
}

.post-cat {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.featured-post h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--ink);
}

.featured-post p {
  font-size: 15px;
  color: var(--ink-70);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 20px;
}

.post-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink-20);
  letter-spacing: 0.1em;
  display: flex;
  gap: 16px;
}

.side-post {
  background: var(--white);
  border: 1.5px solid var(--ink-10);
  padding: 22px 24px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.side-post:last-child {
  margin-bottom: 0;
}

.side-post:hover {
  border-color: var(--gold);
}

.side-post h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 6px;
  color: var(--ink);
}

.side-post p {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.6;
  font-weight: 300;
}

/* Ecosystem row */
.eco-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1.5px solid var(--ink-10);
}

.eco-card {
  background: var(--white);
  padding: 28px 26px;
  transition: background 0.2s;
}

.eco-card:hover {
  background: var(--cream);
}

.eco-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 14px;
  display: inline-block;
}

.eco-here .eco-tag {
  background: var(--gold-dim);
  color: var(--gold);
}

.eco-build .eco-tag {
  background: #e8f7f1;
  color: #0e6e40;
}

.eco-grow .eco-tag {
  background: #fdeeed;
  color: #b02018;
}

.eco-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.eco-card .eco-url {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink-40);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.eco-card p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 14px;
}

.eco-link {
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.eco-here .eco-link {
  color: var(--gold);
}

.eco-build .eco-link {
  color: #0e6e40;
}

.eco-grow .eco-link {
  color: #b02018;
}

/* ─────────────────────────────────────────
   BLOG PAGE
───────────────────────────────────────── */
.blog-header {
  background: var(--dark);
  padding: 72px 52px 56px;
}

.blog-header-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.blog-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 14px;
}

.blog-header h1 em {
  color: var(--gold);
  font-style: italic;
}

.blog-header p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}

.blog-cats {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.blog-cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.blog-cat:hover,
.blog-cat.active {
  border-color: var(--gold);
  color: var(--gold);
}

.blog-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.blog-post-card {
  border-bottom: 1px solid var(--ink-10);
  padding: 36px 0;
  cursor: pointer;
  transition: padding-left 0.2s;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}

.blog-post-card:first-child {
  padding-top: 0;
}

.blog-post-card:hover {
  padding-left: 8px;
}

.bpc-cat {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-post-card h2 {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
}

.blog-post-card p {
  font-size: 15.5px;
  color: var(--ink-70);
  line-height: 1.72;
  font-weight: 300;
  margin-bottom: 14px;
  max-width: 560px;
}

.bpc-meta {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink-20);
  letter-spacing: 0.08em;
  display: flex;
  gap: 14px;
}

.bpc-read {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-20);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  align-self: center;
  white-space: nowrap;
}

/* Blog sidebar */
.sidebar-block {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-block h4 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink-10);
}

.sidebar-block p {
  font-size: 14px;
  color: var(--ink-70);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 14px;
}

.sidebar-signup input {
  width: 100%;
  background: var(--cream);
  border: 1.5px solid var(--ink-10);
  color: var(--ink);
  padding: 9px 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}

.sidebar-signup input:focus {
  border-color: var(--gold);
}

.sidebar-signup button {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-signup button:hover {
  background: var(--gold-rich);
}

.topic-list {
  list-style: none;
}

.topic-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--ink-70);
  font-weight: 400;
  cursor: pointer;
  transition: color 0.2s;
}

.topic-list li:last-child {
  border-bottom: none;
}

.topic-list li:hover {
  color: var(--gold);
}

.topic-count {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink-20);
}

/* ─────────────────────────────────────────
   FREE RESOURCES PAGE
───────────────────────────────────────── */
.resources-header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 52px 72px;
  border-bottom: 1px solid var(--ink-10);
}

.resources-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.resources-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.resources-header p {
  font-size: 18px;
  color: var(--ink-70);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-resource {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
  border-bottom: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-mid);
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-resource h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-resource p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.78;
  margin-bottom: 20px;
  font-weight: 300;
}

.resource-points {
  list-style: none;
  margin-bottom: 28px;
}

.resource-points li {
  font-size: 15px;
  color: var(--ink-70);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-10);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 300;
  line-height: 1.55;
}

.resource-points li:last-child {
  border-bottom: none;
}

.resource-points li::before {
  content: '→';
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
}

.hr-visual {
  background: var(--dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.hr-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
}

.hr-visual .hv-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.hr-visual h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hv-steps {
  list-style: none;
  margin-bottom: 28px;
}

.hv-steps li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 300;
  line-height: 1.5;
}

.hv-steps li:last-child {
  border-bottom: none;
}

.hv-num {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -2px;
}

.hv-cta {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.hv-cta:hover {
  background: var(--gold-rich);
}

.future-resources {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
}

.fr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1.5px solid var(--ink-10);
}

.fr-card {
  background: var(--white);
  padding: 28px 26px;
  position: relative;
  transition: background 0.2s;
}

.fr-card:hover {
  background: var(--cream);
}

.fr-card.coming {
  opacity: 0.6;
}

.fr-coming-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink-05);
  color: var(--ink-40);
  padding: 3px 10px;
  margin-bottom: 14px;
  display: inline-block;
}

.fr-live-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  padding: 3px 10px;
  margin-bottom: 14px;
  display: inline-block;
}

.fr-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.fr-card p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.65;
  font-weight: 300;
}

/* ─────────────────────────────────────────
   NEWSLETTER PAGE
───────────────────────────────────────── */
.newsletter-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 88px 52px 80px;
}

.nl-header {
  text-align: center;
  margin-bottom: 56px;
}

.nl-header .nl-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.nl-header h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.nl-header h1 em {
  font-style: italic;
  color: var(--gold);
}

.nl-header p {
  font-size: 17px;
  color: var(--ink-70);
  line-height: 1.78;
  font-weight: 300;
}

.nl-what {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 32px;
  margin-bottom: 32px;
}

.nl-what h3 {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-10);
}

.nl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
}

.nl-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nl-icon {
  width: 34px;
  height: 34px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.nl-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.nl-item p {
  font-size: 13.5px;
  color: var(--ink-40);
  line-height: 1.55;
  font-weight: 300;
}

.nl-form {
  background: var(--dark);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.nl-form h3 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.nl-form .nf-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  font-weight: 300;
}

.nl-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 11px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 10px;
}

.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.nl-form input:focus {
  border-color: var(--gold);
}

.nl-submit {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.nl-submit:hover {
  background: var(--gold-rich);
}

.nl-proof {
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink-20);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-hero {
  background: var(--dark);
  padding: 88px 52px 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.ah-left .ah-kicker {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

.ah-left h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 20px;
}

.ah-left h1 em {
  font-style: italic;
  color: var(--gold);
}

.ah-left p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.78;
  font-weight: 300;
  max-width: 440px;
}

.ah-right {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.ah-right .ar-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.ah-stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.ah-stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ah-stat-num {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  width: 64px;
}

.ah-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  font-weight: 300;
}

.about-story {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--ink-10);
}

.story-body h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.story-body h2 em {
  font-style: italic;
  color: var(--gold);
}

.story-body p {
  font-size: 16.5px;
  color: var(--ink-70);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.story-body blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 32px 0;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-70);
  line-height: 1.65;
}

.timeline {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 28px 24px;
  align-self: start;
  position: sticky;
  top: 80px;
}

.tl-header {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink-10);
}

.tl-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-10);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
}

.tl-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tl-year {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.1em;
  opacity: 0.7;
  white-space: nowrap;
  padding-top: 2px;
}

.tl-text h5 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--ink);
}

.tl-text p {
  font-size: 12px;
  color: var(--ink-40);
  line-height: 1.5;
  font-weight: 300;
}

.about-eco {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
}

/* ─────────────────────────────────────────
   WORK WITH US PAGE
───────────────────────────────────────── */
.work-hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: 88px 52px 72px;
  text-align: center;
  border-bottom: 1px solid var(--ink-10);
}

.work-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.work-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.work-hero p {
  font-size: 18px;
  color: var(--ink-70);
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.75;
}

.work-options {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.work-card {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s;
}

.work-card:hover {
  border-color: var(--ink-40);
  box-shadow: 0 8px 40px rgba(26, 21, 16, 0.08);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.wc-build::before {
  background: #0e8a5e;
}

.wc-grow::before {
  background: #c8291e;
}

.wc-tag {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 18px;
  display: inline-block;
}

.wc-build .wc-tag {
  background: #e8f7f1;
  color: #0e6e40;
}

.wc-grow .wc-tag {
  background: #fdeeed;
  color: #b02018;
}

.work-card h2 {
  font-family: 'Lora', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.work-card .wc-url {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink-40);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.work-card p {
  font-size: 16px;
  color: var(--ink-70);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 20px;
}

.wc-for {
  border-top: 1px solid var(--ink-10);
  padding-top: 18px;
  margin-bottom: 24px;
}

.wc-for-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 10px;
}

.wc-for-list {
  list-style: none;
}

.wc-for-list li {
  font-size: 14px;
  color: var(--ink-70);
  padding: 5px 0;
  display: flex;
  gap: 10px;
  font-weight: 300;
}

.wc-build .wc-for-list li::before {
  content: '→';
  color: #0e8a5e;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
}

.wc-grow .wc-for-list li::before {
  content: '→';
  color: #c8291e;
  font-size: 11px;
  font-family: 'DM Mono', monospace;
}

.wc-cta {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.wc-build .wc-cta {
  background: #0e8a5e;
  color: white;
}

.wc-build .wc-cta:hover {
  background: #0b6e4a;
}

.wc-grow .wc-cta {
  background: #c8291e;
  color: white;
}

.wc-grow .wc-cta:hover {
  background: #a82018;
}

.not-sure {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 52px 80px;
}

.not-sure-inner {
  background: var(--dark);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.not-sure-inner h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  line-height: 1.2;
}

.not-sure-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.65;
  max-width: 480px;
}

/* ─────────────────────────────────────────
   DIFFERENTIATOR SECTION
───────────────────────────────────────── */
.differentiator {
  border: 1.5px solid var(--ink-10);
  background: var(--white);
  padding: 28px 26px;
  transition: background 0.2s;
}

.differentiator:hover {
  background: var(--cream);
}

/* ─────────────────────────────────────────
   WORDPRESS CONTENT AREA
───────────────────────────────────────── */
.entry-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 52px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  font-family: 'Lora', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--ink);
}

.entry-content p {
  font-size: 16.5px;
  color: var(--ink-70);
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.entry-content a {
  color: var(--gold);
  text-decoration: none;
}

.entry-content a:hover {
  text-decoration: underline;
}

.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 32px 0;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-70);
  line-height: 1.65;
}

/* WordPress alignment helpers */
.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.aligncenter {
  display: block;
  margin: 0 auto 16px;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .site-nav {
    padding: 0 24px;
  }

  .nav-links,
  .site-nav nav>ul {
    display: none;
  }

  .hero-home {
    grid-template-columns: 1fr;
    padding: 80px 24px 56px;
    min-height: auto;
  }

  .hero-home h1 {
    font-size: 2.6rem;
  }

  .featured-grid,
  .eco-row,
  .blog-layout,
  .hero-resource,
  .fr-grid,
  .about-hero-inner,
  .about-story,
  .work-options {
    grid-template-columns: 1fr;
  }

  .home-section,
  .resources-header,
  .hero-resource,
  .future-resources,
  .about-eco,
  .work-hero,
  .work-options,
  .not-sure,
  .blog-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .blog-header {
    padding: 56px 24px 40px;
  }

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .bpc-read {
    display: none;
  }

  .newsletter-page {
    padding: 64px 24px;
  }

  .about-hero {
    padding: 72px 24px 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .not-sure-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .about-story {
    gap: 40px;
  }

  .what-strip {
    padding: 16px 24px;
    gap: 24px;
  }

  .entry-content {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-home h1 {
    font-size: 2.2rem;
  }

  .page-nav {
    display: none;
  }
}