/*
Theme Name: ANish Digital
Theme URI: https://ad.aromanish.com
Author: ANish Digital Advertising
Author URI: https://ad.aromanish.com
Description: A premium, fully customizable WordPress theme for ANish Digital Advertising — featuring content writing, digital marketing, SEO, PPC, brand strategy, and blog pages. Built for performance, flexibility, and editorial elegance.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anish-digital
Tags: custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, blog, portfolio, e-commerce
*/

/* ─────────────────────────────────────────────────────────
   ANISH DIGITAL — MASTER STYLESHEET
   All component styles live here. Page-specific overrides
   are handled by body class targeting.
───────────────────────────────────────────────────────── */

:root {
  --ink:          #0d0d0d;
  --paper:        #f7f5f0;
  --cream:        #ede9e0;
  --accent:       #c8522a;
  --accent-light: #f0dbd1;
  --accent-dark:  #8c3519;
  --gold:         #b8960c;
  --gold-light:   #f5edca;
  --muted:        #6b6560;
  --border:       #d4cfc6;
  --white:        #ffffff;
  --card-bg:      #fdfcf9;
  --nav-h:        72px;
  --serif:        'Playfair Display', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --mono:         'DM Mono', monospace;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow:       0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.12);
  --max-w:        1280px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
ul, ol { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; width: 100%; }
.section { padding: 6rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ── TYPOGRAPHY ── */
.section-tag {
  font-family: var(--mono); font-size: .75rem; font-weight: 500;
  color: var(--accent); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 1rem; display: block;
}
.section-title {
  font-family: var(--serif); font-size: clamp(2rem,4vw,3rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -.02em; margin-bottom: 1.5rem;
}
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-header { margin-bottom: 4rem; }
.section-dark .section-sub  { color: #9b9590; }
.section-dark .section-tag  { color: var(--gold); }
.section-dark .section-title { color: var(--paper); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  padding: .9rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  transition: background .2s, transform .2s; border: none; cursor: pointer;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }
.btn-primary.accent { background: var(--accent); }
.btn-primary.accent:hover { background: var(--accent-dark); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-weight: 500; font-size: .9rem;
  border-bottom: 2px solid var(--ink); padding-bottom: 2px;
  transition: color .2s, border-color .2s; background: none; cursor: pointer; font-family: var(--sans);
}
.btn-secondary:hover { color: var(--accent); border-color: var(--accent); }

.btn-white {
  display: inline-block;
  background: var(--paper); color: var(--ink);
  padding: .9rem 2.5rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem; transition: background .2s, color .2s;
}
.btn-white:hover { background: var(--accent); color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--ink); color: var(--ink);
  padding: .75rem 1.75rem; border-radius: 100px;
  font-weight: 600; font-size: .9rem; transition: all .2s; font-family: var(--sans);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ── NAV ── */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,245,240,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
}
.site-branding { display: flex; align-items: center; gap: .75rem; }
.site-title a {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 700;
  letter-spacing: -.02em; color: var(--ink);
}
.site-title a span { color: var(--accent); }
.custom-logo { max-height: 44px; width: auto; }

#primary-navigation ul {
  display: flex; align-items: center; gap: .25rem; list-style: none;
}
#primary-navigation ul li a {
  font-size: .875rem; font-weight: 500; color: var(--muted);
  padding: .4rem .75rem; border-radius: var(--radius);
  display: block; transition: color .2s, background .2s;
}
#primary-navigation ul li a:hover,
#primary-navigation ul li.current-menu-item > a,
#primary-navigation ul li.current-page-ancestor > a { color: var(--ink); background: var(--cream); }
#primary-navigation ul li.menu-cta > a {
  background: var(--ink); color: var(--paper) !important;
  border-radius: 100px; padding: .45rem 1.2rem;
}
#primary-navigation ul li.menu-cta > a:hover { background: var(--accent); }

/* Sub-menus */
#primary-navigation ul li { position: relative; }
#primary-navigation ul ul {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: .5rem; flex-direction: column; gap: 2px;
}
#primary-navigation ul li:hover > ul { display: flex; }
#primary-navigation ul ul li a { border-radius: var(--radius); white-space: nowrap; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--paper); z-index: 999; padding: 2rem;
  overflow-y: auto; flex-direction: column;
}
.mobile-nav.active { display: flex; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; font-size: 1.1rem; font-weight: 500;
  padding: .85rem 0; border-bottom: 1px solid var(--border); color: var(--ink);
}
.mobile-nav ul ul { padding-left: 1rem; }
.mobile-nav ul ul li a { font-size: .95rem; color: var(--muted); }

/* ── HERO ── */
.hero-section {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; max-width: var(--max-w); margin: 0 auto;
  padding: 5rem 2rem 4rem; gap: 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold);
  border: 1px solid var(--gold); border-radius: 100px;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; padding: .3rem 1rem; margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: block; }
.hero-content h1 {
  font-family: var(--serif); font-size: clamp(2.5rem,5vw,4.2rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-content p.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  box-shadow: var(--shadow-lg); width: 100%; max-width: 420px;
}
.hero-card-title { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.hero-card-sub { font-size: .75rem; color: var(--muted); margin-bottom: 1rem; }
.hero-progress { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; margin-bottom: .75rem; }
.hero-progress-bar { height: 100%; width: 82%; background: var(--accent); border-radius: 2px; }
.hero-progress-label { display: flex; justify-content: space-between; font-size: .75rem; color: var(--muted); margin-bottom: 1rem; }
.hero-progress-label strong { color: var(--accent); }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.stat-box { background: var(--cream); border-radius: var(--radius); padding: 1rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: .75rem; color: var(--muted); margin-top: 2px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 100px; font-size: .75rem; font-weight: 500;
  padding: .25rem .75rem; color: var(--muted);
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--accent); color: var(--white);
  padding: .75rem 2rem; text-align: center;
  font-size: .875rem; font-weight: 500; line-height: 1.5;
}
.announcement-bar a { text-decoration: underline; font-weight: 700; color: var(--white); }
.announcement-bar .close-bar {
  float: right; cursor: pointer; font-size: 1.2rem; line-height: 1;
  background: none; border: none; color: var(--white); opacity: .7;
}

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem; font-size: 1.4rem;
}
.card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-size: .85rem; font-weight: 600; margin-top: 1rem;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 4rem 2rem 3rem; margin-top: var(--nav-h);
}
.page-header h1 { font-family: var(--serif); font-size: clamp(2rem,4vw,3rem); font-weight: 900; }
.page-header p { color: var(--muted); margin-top: .5rem; font-size: 1.05rem; }
.breadcrumb { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { margin: 0 .4rem; }
.breadcrumb span.current { color: var(--accent); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  position: relative; transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--accent); border-width: 2px; background: var(--white); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem 1rem; border-radius: 100px;
}
.pricing-tier { font-family: var(--mono); font-size: .8rem; color: var(--muted); margin-bottom: .5rem; letter-spacing: .1em; text-transform: uppercase; }
.pricing-price { font-family: var(--serif); font-size: 3rem; font-weight: 900; line-height: 1; margin: .5rem 0; }
.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: .5rem; }
.pricing-price .period { font-family: var(--sans); font-size: .9rem; font-weight: 400; color: var(--muted); }
.pricing-desc { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: .9rem; padding: .5rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 8px; color: var(--muted);
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: .8rem; flex-shrink: 0; margin-top: 3px; }

/* ── BLOG / ARCHIVE ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 2rem; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-thumb { display: block; overflow: hidden; }
.blog-thumb img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-thumb-placeholder {
  height: 200px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.blog-body { padding: 1.5rem; }
.blog-cat {
  font-family: var(--mono); font-size: .7rem; color: var(--accent);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; display: block;
}
.blog-card h2, .blog-card h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  margin-bottom: .5rem; line-height: 1.35;
}
.blog-card h2 a, .blog-card h3 a { color: var(--ink); }
.blog-card h2 a:hover, .blog-card h3 a:hover { color: var(--accent); }
.blog-excerpt { color: var(--muted); font-size: .875rem; line-height: 1.65; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; font-size: .8rem; color: var(--muted); flex-wrap: wrap; }
.blog-meta a { color: var(--muted); }
.blog-meta a:hover { color: var(--accent); }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-size: .85rem; font-weight: 600; margin-top: 1rem;
}
.blog-read-more:hover { color: var(--accent-dark); }

/* Featured post */
.featured-post {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 3rem;
}
.featured-post-thumb { border-radius: var(--radius-lg); overflow: hidden; }
.featured-post-thumb img { width: 100%; height: 300px; object-fit: cover; }
.featured-post-thumb-placeholder {
  height: 280px; background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}

/* ── SINGLE POST ── */
.site-main { padding-top: var(--nav-h); }
.single-post-header { background: var(--cream); padding: 3rem 2rem 2rem; border-bottom: 1px solid var(--border); }
.single-post-header-inner { max-width: 760px; margin: 0 auto; }
.entry-title { font-family: var(--serif); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 900; line-height: 1.2; }
.entry-meta { display: flex; align-items: center; gap: 1.25rem; margin-top: 1.25rem; flex-wrap: wrap; font-size: .875rem; color: var(--muted); }
.entry-meta a { color: var(--muted); }
.entry-meta a:hover { color: var(--accent); }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; }
.post-stars { color: var(--gold); font-size: .85rem; }

.entry-content-wrap { max-width: 760px; margin: 0 auto; padding: 3rem 2rem; }
.entry-content h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin: 2.5rem 0 1rem; }
.entry-content h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 .75rem; }
.entry-content p { color: var(--muted); margin-bottom: 1.25rem; line-height: 1.85; font-size: 1rem; }
.entry-content ul, .entry-content ol { color: var(--muted); padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ul li, .entry-content ol li { margin-bottom: .5rem; line-height: 1.7; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content blockquote {
  border-left: 4px solid var(--accent); padding: 1rem 1.5rem;
  background: var(--accent-light); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0; font-style: italic; color: var(--accent-dark); font-size: 1.05rem;
}
.entry-content img { border-radius: var(--radius-lg); margin: 2rem auto; box-shadow: var(--shadow); }
.entry-content .wp-caption { text-align: center; }
.entry-content .wp-caption-text { font-size: .8rem; color: var(--muted); margin-top: .5rem; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .9rem; }
.entry-content table th { background: var(--cream); padding: .75rem 1rem; text-align: left; font-weight: 600; border: 1px solid var(--border); }
.entry-content table td { padding: .75rem 1rem; border: 1px solid var(--border); color: var(--muted); }
.entry-content code { font-family: var(--mono); background: var(--cream); padding: .1rem .4rem; border-radius: 3px; font-size: .875em; }
.entry-content pre { background: var(--ink); color: #e5e5e5; padding: 1.5rem; border-radius: var(--radius-lg); overflow-x: auto; margin-bottom: 1.5rem; }
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content a:hover { color: var(--accent-dark); }

.post-tags { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; margin: 2rem 0; }
.post-tags span { font-size: .8rem; color: var(--muted); }
.post-tag {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: 100px; font-size: .75rem; padding: .25rem .75rem; color: var(--muted);
}
.post-tag:hover { border-color: var(--accent); color: var(--accent); }

/* Author box */
.author-box {
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  display: flex; gap: 1.5rem; margin: 3rem 0; align-items: flex-start;
}
.author-box .author-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; overflow: hidden; }
.author-box .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { font-family: var(--serif); font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }
.author-info .author-role { font-size: .75rem; color: var(--accent); font-family: var(--mono); letter-spacing: .05em; margin-bottom: .5rem; }
.author-info p { font-size: .875rem; color: var(--muted); }

/* Post navigation */
.post-navigation {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin: 3rem 0; border-top: 1px solid var(--border); padding-top: 2rem;
}
.nav-previous, .nav-next { }
.nav-next { text-align: right; }
.nav-label { font-size: .75rem; color: var(--muted); font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: .25rem; }
.nav-previous a, .nav-next a { font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ink); }
.nav-previous a:hover, .nav-next a:hover { color: var(--accent); }

/* Comments */
.comments-section { border-top: 1px solid var(--border); padding-top: 2rem; }
.comments-section h2 { font-family: var(--serif); font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; }
.comment-list { list-style: none; }
.comment { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.comment-author { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.comment-author img { border-radius: 50%; }
.comment-author .fn { font-weight: 600; font-size: .9rem; }
.comment-meta { font-size: .75rem; color: var(--muted); }
.comment-content p { color: var(--muted); font-size: .9rem; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans); font-size: .9rem;
  background: var(--white); margin-bottom: 1rem; outline: none;
}
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--accent); }
.comment-form textarea { resize: vertical; min-height: 120px; }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1.5rem; }
.team-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--accent);
  margin: 0 auto 1rem; overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .25rem; }
.team-role { font-size: .8rem; color: var(--muted); font-family: var(--mono); letter-spacing: .05em; margin-bottom: .75rem; }
.team-bio { font-size: .8rem; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.testi-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.testi-quote { font-family: var(--serif); font-size: 3rem; color: var(--accent-light); line-height: 1; margin-bottom: .5rem; }
.testi-card p { font-size: .95rem; color: var(--muted); font-style: italic; line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { font-weight: 600; font-size: .875rem; }
.testi-company { font-size: .8rem; color: var(--muted); }
.stars { color: var(--gold); font-size: .9rem; margin-bottom: .75rem; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.process-step { padding: 2rem; border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.step-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 900; color: var(--accent-light); line-height: 1; margin-bottom: .5rem; }
.step-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc { font-size: .875rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink); color: var(--paper);
  text-align: center; padding: 6rem 2rem;
}
.cta-band h2 { font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); font-weight: 900; margin-bottom: 1rem; color: var(--paper); }
.cta-band p { color: #9b9590; max-width: 480px; margin: 0 auto 2.5rem; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: .4rem; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-family: var(--sans); font-size: .9rem;
  color: var(--ink); background: var(--white); transition: border-color .2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: .5rem; }

/* Contact info cards */
.contact-info-cards { display: grid; gap: 1rem; }
.contact-info-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem;
}
.contact-info-card .icon { font-size: 1.5rem; margin-bottom: .5rem; }
.contact-info-card h4 { font-weight: 600; margin-bottom: .25rem; }
.contact-info-card a { color: var(--accent); font-size: .9rem; }
.contact-info-card small { color: var(--muted); font-size: .8rem; display: block; margin-top: .2rem; }
.alert-box {
  padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid;
  margin-top: 1.5rem;
}
.alert-box.gold { background: var(--gold-light); border-color: var(--gold); color: #6b5a10; }
.alert-box h4 { font-weight: 700; font-size: .875rem; color: var(--gold); margin-bottom: .4rem; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; cursor: pointer; font-weight: 600; gap: 1rem;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.faq-icon { color: var(--accent); font-size: 1.2rem; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { color: var(--muted); font-size: .9rem; padding-bottom: 1.25rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── VALUES ── */
.values-list { margin-top: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.value-num { font-family: var(--serif); font-size: 1.5rem; font-weight: 900; color: var(--accent-light); min-width: 2rem; }
.value-title { font-weight: 600; margin-bottom: .25rem; font-size: .95rem; }
.value-desc { font-size: .875rem; color: var(--muted); }

/* ── SIDEBAR ── */
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.widget { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.widget-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.widget ul { list-style: none; }
.widget ul li { padding: .4rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--muted); }
.widget ul li a:hover { color: var(--accent); }
.widget .search-form { display: flex; gap: .5rem; }
.widget .search-field { flex: 1; padding: .6rem .9rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--sans); font-size: .875rem; outline: none; }
.widget .search-field:focus { border-color: var(--accent); }
.widget .search-submit { background: var(--ink); color: var(--paper); border: none; border-radius: var(--radius); padding: .6rem 1rem; cursor: pointer; font-size: .875rem; transition: background .2s; }
.widget .search-submit:hover { background: var(--accent); }
.tag-cloud .tag { display: inline-block; margin: 0 4px 6px 0; }

/* ── PAGINATION ── */
.pagination { display: flex; align-items: center; justify-content: center; gap: .5rem; margin: 3rem 0; }
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: .875rem; font-weight: 500;
  color: var(--muted); transition: all .2s;
}
.page-numbers:hover, .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.page-numbers.dots { border: none; width: auto; }

/* ── FOOTER ── */
#colophon {
  background: var(--ink); color: var(--paper); padding: 5rem 2rem 2rem;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .site-title a { color: var(--paper); }
.footer-brand p { color: #9b9590; font-size: .9rem; margin-top: 1rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #9b9590; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #ccc; font-size: .875rem; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #333; display: flex; align-items: center; justify-content: center;
  color: #999; font-size: .8rem; transition: all .2s; font-weight: 700;
}
.social-link:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: #666; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--accent); }

/* ── POLICY / LEGAL PAGES ── */
.policy-content h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin: 2rem 0 .75rem; }
.policy-content h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 .5rem; }
.policy-content p { color: var(--muted); margin-bottom: 1rem; font-size: .95rem; line-height: 1.7; }
.policy-content ul { color: var(--muted); font-size: .95rem; padding-left: 1.5rem; margin-bottom: 1rem; list-style: disc; }
.policy-content ul li { margin-bottom: .4rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp .6s ease forwards; }
.animate-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-delay-3 { animation-delay: .3s; opacity: 0; }

/* ── WOOCOMMERCE COMPATIBILITY ── */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1rem;
  border-left: 4px solid var(--accent); background: var(--accent-light);
  font-size: .9rem;
}

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; padding: 4rem 2rem 3rem; gap: 3rem; }
  .hero-visual { order: -1; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  #primary-navigation { display: none; }
  .nav-toggle { display: flex; }
  .hero-section { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .featured-post { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .post-navigation { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-stat-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ── PRINT ── */
@media print {
  #masthead, #colophon, .cta-band, .announcement-bar { display: none; }
  .site-main { padding-top: 0; }
  .entry-content { color: #000; }
}
