/*
Theme Name: PR Panthers
Theme URI: https://github.com/TahseenAshrafi
Author: Tahseen Ashrafi
Author URI: https://github.com/TahseenAshrafi
Description: PR Panthers is a bold, editorial-style WordPress theme built for PR and communications studios. Features a custom cursor, smooth scroll animations, marquee stats, full customizer control over colors, logo, images, menus, and social links. Includes a dynamic blog system with single post templates, gallery campaigns, service pages, testimonials, and a contact form — all styled with the same warm cream and gradient orange-red identity. Made by Tahseen Ashrafi.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pr-panthers
Tags: custom-logo, custom-menu, custom-colors, featured-images, full-site-editing, blog, portfolio, responsive-layout, threaded-comments
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg: #fbf6ec;
  --fg: #1d150c;
  --muted: #7a6f63;
  --card: #fff;
  --border: #e8dfd0;
  --brand1: #f59045;
  --brand2: #e0444b;
  --grad: linear-gradient(135deg, #f5a96b, #e0444b);
  --shadow: 0 10px 40px -15px rgba(29, 21, 12, .15);
  --display: "Anton", "Bebas Neue", sans-serif;
  --sans: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --logo-max-width: 160px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  letter-spacing: -.02em;
  line-height: .95;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.gradient {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.italic {
  font-style: italic;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--muted);
}

h2.huge {
  font-size: clamp(40px, 7vw, 112px);
}

.text-muted {
  color: var(--muted);
}

.mt-4 { margin-top: 32px; }
.mt-2 { margin-top: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
  padding: 8px 8px 8px 28px;
  font-weight: 600;
  transition: transform .3s;
}

.btn:hover {
  transform: scale(1.05);
}

.btn .arr {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: var(--bg);
  color: var(--fg);
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--grad);
  z-index: 100;
  width: 0%;
  transition: width .1s linear;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  border-radius: 999px;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  transition: width .2s, height .2s;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid #fff;
  transition: transform .35s cubic-bezier(.19, 1, .22, 1), width .25s, height .25s;
}

.cursor-hover .cursor-dot {
  width: 0;
  height: 0;
}

.cursor-hover .cursor-ring {
  width: 64px;
  height: 64px;
  background: #fff;
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  width: 100%;
  max-width: 980px;
  background: rgba(251, 246, 236, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 24px;
  transition: all .4s;
}

.nav.scrolled .nav-inner {
  background: rgba(251, 246, 236, .92);
  box-shadow: var(--shadow);
}

.logo {
  font-family: var(--display);
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo img.custom-logo {
  max-width: var(--logo-max-width);
  height: auto;
  display: block;
}

.logo-text {
  font-family: var(--display);
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 999px;
  transition: .2s;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, .05);
}

.nav-links a.current-menu-item,
.nav-links a.current_page_item,
.nav-links a.active {
  background: var(--fg);
  color: var(--bg);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fg);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
}

.nav-cta .arr {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  border: 0;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 840px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 12px;
  border-radius: 0 0 20px 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
}

.mobile-menu a:hover {
  background: rgba(0, 0, 0, .05);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 96px 16px 0;
}

.hero-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: var(--bg);
}

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 21, 12, .85), rgba(29, 21, 12, .3) 60%, rgba(29, 21, 12, .1));
}

.hero-top {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  opacity: .85;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 64px 32px;
  width: 100%;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(48px, 11vw, 176px);
}

.hero-row {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 840px) {
  .hero-content {
    padding: 64px;
  }

  .hero-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.hero-row p {
  max-width: 520px;
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
}

/* Hero animations */
.float-up {
  opacity: 0;
  transform: translateY(24px);
  animation: floatUp .9s cubic-bezier(.19, 1, .22, 1) forwards;
}

.float-up.d1 { animation-delay: .12s; }
.float-up.d2 { animation-delay: .24s; }

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

/* ============================================================
   STATS MARQUEE
   ============================================================ */
.marquee {
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(245, 169, 107, .15);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.stat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
}

.stat .n {
  font-family: var(--display);
  font-size: 64px;
}

.stat .l {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--muted);
  max-width: 120px;
}

.stat .x {
  font-size: 28px;
}

.stat .x span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section.block {
  padding: 96px 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 32px;
  transition: transform .3s;
}

.card:hover {
  transform: translateY(-4px);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.svc h3 {
  font-size: 28px;
  margin: 12px 0;
}

.svc .num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.svc .more {
  display: inline-flex;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 14px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   FEATURED WORK GRID
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.work-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  color: var(--bg);
  display: block;
}

.work-card.offset {
  margin-top: 64px;
}

@media (max-width: 840px) {
  .work-card.offset {
    margin-top: 0;
  }
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s;
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 21, 12, .8), transparent 60%);
}

.work-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.work-card .cap .arr {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(251, 246, 236, .95);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  flex-shrink: 0;
}

.work-card:hover .cap .arr {
  background: var(--grad);
  color: #fff;
}

.work-card .cap small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .3em;
  opacity: .85;
  display: block;
}

.work-card .cap h3 {
  font-size: 26px;
  margin-top: 4px;
}

/* ============================================================
   INDUSTRIES DARK BLOCK
   ============================================================ */
.dark-block {
  background: var(--fg);
  color: var(--bg);
  border-radius: 48px;
  margin: 64px 16px;
  padding: 96px 0;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(251, 246, 236, .1);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 56px;
}

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

.ind-grid > div {
  background: var(--fg);
  padding: 40px;
}

.ind-grid h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.ind-grid p {
  color: rgba(251, 246, 236, .7);
}

.ind-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--grad);
  margin-bottom: 32px;
}

/* ============================================================
   QUOTE BLOCK
   ============================================================ */
.quote-block {
  max-width: 880px;
  margin: 0 auto;
  padding: 128px 24px;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  margin-top: 128px;
  background: var(--fg);
  color: var(--bg);
  border-radius: 48px 48px 0 0;
  position: relative;
  overflow: hidden;
}

footer .glow {
  position: absolute;
  top: -128px;
  right: -128px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: var(--grad);
  opacity: .3;
  filter: blur(80px);
}

.footer-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 24px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

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

.footer-grid .lead {
  grid-column: span 6;
}

.footer-grid .col {
  grid-column: span 3;
}

@media (max-width: 840px) {
  .footer-grid .lead,
  .footer-grid .col {
    grid-column: span 1;
  }
}

footer h2 {
  font-size: clamp(48px, 8vw, 112px);
}

footer ul li {
  margin-bottom: 12px;
}

footer ul a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

footer .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: rgba(251, 246, 236, .4);
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(251, 246, 236, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.socials a:hover {
  background: var(--grad);
  border-color: transparent;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(251, 246, 236, .1);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(251, 246, 236, .55);
  flex-wrap: wrap;
}

.footer-bottom .made {
  text-transform: none;
  letter-spacing: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom .made svg {
  width: 14px;
  height: 14px;
  fill: #e0444b;
}

.footer-bottom .made b {
  color: var(--bg);
  font-weight: 700;
}

.footer-bottom .made a {
  color: var(--bg);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom .made a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-head {
  padding: 128px 0 64px;
}

.page-head h1 {
  font-size: clamp(48px, 9vw, 144px);
}

/* ============================================================
   SERVICE DETAIL / CASE STUDY
   ============================================================ */
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(251, 246, 236, .1);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 48px;
}

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

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

.proc-grid > div {
  background: var(--fg);
  padding: 32px;
}

.proc-grid .num {
  font-family: var(--display);
  font-size: 48px;
  margin-bottom: 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.results .n {
  font-family: var(--display);
  font-size: 72px;
}

.deliv {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.deliv .row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 20px;
}

.deliv .row .n {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  padding-top: 4px;
}

.case-hero {
  padding: 0 16px;
}

.case-hero .inner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  color: var(--bg);
}

.case-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 21, 12, .85), transparent);
}

.case-hero .ct {
  position: relative;
  padding: 64px 32px;
}

.case-hero h1 {
  font-size: clamp(48px, 9vw, 144px);
  margin-top: 16px;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 840px) {
  .case-gallery {
    grid-template-columns: 1fr;
  }
}

.case-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
}

.next-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.next-row a.next {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
}

.next-row a.next:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.test {
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 32px;
}

.test .mark {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.test blockquote {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.test .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.test .who .av {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--grad);
  flex-shrink: 0;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--card);
  box-shadow: var(--shadow);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card .pad {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card h3 {
  font-size: 24px;
  margin: 8px 0;
  line-height: 1.1;
}

.blog-card .read-more {
  display: inline-flex;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   SINGLE BLOG POST
   ============================================================ */
.single-post-hero {
  padding: 96px 16px 0;
}

.single-post-hero .inner {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  color: var(--bg);
}

.single-post-hero .inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-hero .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(29, 21, 12, .85), rgba(29, 21, 12, .2) 70%);
}

.single-post-hero .ct {
  position: relative;
  z-index: 1;
  padding: 48px 40px;
  width: 100%;
}

.single-post-hero .ct .eyebrow {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
}

.single-post-hero .ct h1 {
  font-size: clamp(36px, 6vw, 96px);
  max-width: 900px;
}

.post-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .15em;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
}

.post-body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--fg);
  margin-bottom: 28px;
}

.post-body h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin: 56px 0 20px;
}

.post-body h3 {
  font-size: clamp(22px, 3vw, 36px);
  margin: 40px 0 16px;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.post-body ul {
  list-style: disc;
}

.post-body ol {
  list-style: decimal;
}

.post-body li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.post-body blockquote {
  border-left: 4px solid var(--brand1);
  padding: 16px 24px;
  margin: 32px 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--fg);
  background: rgba(245, 169, 107, .08);
  border-radius: 0 16px 16px 0;
}

.post-body img {
  width: 100%;
  border-radius: 20px;
  margin: 32px 0;
}

.post-body a {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.post-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.post-tags a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .2em;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--muted);
  background: none;
  transition: .2s;
}

.post-tags a:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.related-posts {
  padding: 80px 0;
  background: rgba(245, 169, 107, .08);
}

.related-posts h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 40px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .25em;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: inherit;
  outline: none;
  transition: .2s;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand1);
}

.wpcf7-form button,
.contact-form-wrap button,
form.card button {
  background: var(--fg);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font: 600 14px var(--sans);
  cursor: pointer;
  transition: .3s;
}

.wpcf7-form button:hover,
.contact-form-wrap button:hover,
form.card button:hover {
  background: var(--grad);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.error-404 .code {
  font-family: var(--display);
  font-size: clamp(120px, 20vw, 240px);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-404 h1 {
  font-size: clamp(32px, 5vw, 64px);
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.search-results article {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.search-results article:last-child {
  border-bottom: none;
}

.search-results h2 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 8px;
}

.search-results h2 a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-area {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px;
}

.comments-area h2 {
  font-size: clamp(28px, 3vw, 48px);
  margin-bottom: 40px;
}

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

.comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.comment .comment-author {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.comment-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
}

.comment-reply-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 8px;
  display: inline-block;
}

.comment-respond {
  margin-top: 48px;
}

.comment-respond h3 {
  font-size: clamp(24px, 3vw, 40px);
  margin-bottom: 24px;
}

.comment-form .field {
  margin-bottom: 16px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: inherit;
  outline: none;
  width: 100%;
  transition: .2s;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--brand1);
}

.comment-form .submit {
  background: var(--fg);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font: 600 14px var(--sans);
  cursor: pointer;
  transition: .3s;
}

.comment-form .submit:hover {
  background: var(--grad);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: .2s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ============================================================
   WIDGETS (Sidebar / Footer)
   ============================================================ */
.widget {
  margin-bottom: 40px;
}

.widget-title {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 16px;
}

/* ============================================================
   WORDPRESS CORE ALIGNMENT CLASSES
   ============================================================ */
.alignleft {
  float: left;
  margin-right: 24px;
  margin-bottom: 16px;
}

.alignright {
  float: right;
  margin-left: 24px;
  margin-bottom: 16px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--fg);
  color: var(--bg);
  padding: 12px 24px;
  z-index: 999;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   SCREEN READER TEXT
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  background-color: var(--card);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
  clip: auto;
  clip-path: none;
  color: var(--fg);
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
