/*
Theme Name: ANish Marketing
Theme URI: https://ma.aromanish.com
Author: ANish Marketing Hub
Author URI: https://ma.aromanish.com
Description: A bold, modern advertising agency theme for ANish Marketing Hub. Features dark editorial aesthetic with performance-first design, full-page templates for Services, About, Pricing, Blog, Contact, and Privacy Policy.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anish-marketing
Tags: dark, modern, business, marketing, one-page, custom-menu, custom-logo, blog, portfolio
*/

/* ─────────────────────────────────────────
   ROOT VARIABLES
───────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --cream: #f0ead8;
  --accent: #ff3c1f;
  --accent2: #ffb800;
  --mid: #1a1a1a;
  --muted: #555;
  --border: rgba(245,240,232,0.12);
  --card-bg: #111;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 4vw;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.site-branding .site-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}
.site-branding .site-title a { color: var(--white); }
.site-branding .site-title a span { color: var(--accent); }

/* WordPress nav menu */
.main-navigation { display: flex; align-items: center; gap: 2rem; }
.main-navigation ul { display: flex; gap: 2rem; list-style: none; }
.main-navigation ul li a {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; opacity: 0.7; transition: opacity 0.2s;
}
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item a { opacity: 1; color: var(--accent); }

.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: #e62e10; color: #fff; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--black);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 1; color: var(--accent); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 4vw;
  font-size: 2rem; cursor: pointer; opacity: 0.5;
  background: none; border: none; color: var(--white);
}

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.section-label {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--accent); }

.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.1;
  max-width: 600px; margin-bottom: 3rem;
}
.section-title em { color: var(--accent); font-style: normal; }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 1rem 2rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--accent); cursor: pointer; transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--accent); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 1rem 2rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid rgba(245,240,232,0.3); cursor: pointer; transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); }

.btn-white {
  background: #fff; color: var(--accent);
  padding: 1rem 2rem; font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid #fff; cursor: pointer; transition: all 0.2s; display: inline-block;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ─────────────────────────────────────────
   SECTIONS / LAYOUT
───────────────────────────────────────── */
.site-main { padding-top: 70px; }
section, .section { padding: 6rem 4vw; }

/* Page hero header */
.page-hero {
  padding: 9rem 4vw 4rem;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,60,31,0.04));
  pointer-events: none;
}
.page-hero .hero-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  max-width: 700px; margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { color: rgba(245,240,232,0.55); max-width: 550px; font-weight: 300; }

/* ─────────────────────────────────────────
   HOME: HERO SECTION
───────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4vw 4rem;
  position: relative; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,60,31,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,60,31,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,60,31,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-label {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-label::before { content: ''; width: 40px; height: 1px; background: var(--accent); }

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900; line-height: 1.0;
  letter-spacing: -0.04em; max-width: 800px; margin-bottom: 1.5rem;
}
h1.hero-title em { color: var(--accent); font-style: normal; }

.hero-sub {
  max-width: 500px; color: rgba(245,240,232,0.65);
  font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 5rem;
  padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.stat-label {
  font-size: 0.75rem; color: rgba(245,240,232,0.5);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem;
}

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 0; background: var(--mid);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245,240,232,0.4);
  padding: 0 2.5rem;
}
.marquee-track span.accent { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────
   SERVICES GRID
───────────────────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card {
  background: var(--black); padding: 2.5rem;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px; background: var(--accent); transition: width 0.4s;
}
.service-card:hover { background: #0f0f0f; }
.service-card:hover::before { width: 100%; }
.service-num {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.service-icon {
  width: 48px; height: 48px; margin-bottom: 1.5rem;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.service-card p { color: rgba(245,240,232,0.55); font-size: 0.9rem; font-weight: 300; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { border: 1px solid var(--border); padding: 2rem; position: relative; }
.testimonial-card::before {
  content: '"'; font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  color: var(--accent); opacity: 0.15; position: absolute; top: -0.5rem; left: 1.5rem; line-height: 1;
}
.testimonial-card p {
  font-size: 0.95rem; color: rgba(245,240,232,0.7); font-weight: 300;
  font-style: italic; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,60,31,0.2); border: 1px solid rgba(255,60,31,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.author-name { font-size: 0.85rem; font-weight: 500; }
.author-title { font-size: 0.75rem; color: rgba(245,240,232,0.4); }

/* ─────────────────────────────────────────
   CALLOUT BAND
───────────────────────────────────────── */
.callout-band {
  background: var(--accent); padding: 3rem 4vw;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.callout-band h3 {
  font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900; letter-spacing: -0.03em; color: #fff;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--card-bg); border: 1px solid var(--border); overflow: hidden;
}
.about-visual-inner {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a0a05 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
}
.about-big-text {
  font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  color: var(--accent); opacity: 0.15; line-height: 1;
}
.about-tagline {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  text-align: center; padding: 0 2rem; line-height: 1.2;
}
.about-badges {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.badge {
  background: rgba(255,60,31,0.1); border: 1px solid rgba(255,60,31,0.3);
  color: var(--accent); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; padding: 0.35rem 0.75rem;
}
.about-text p { color: rgba(245,240,232,0.65); font-weight: 300; margin-bottom: 1.25rem; }
.about-list { list-style: none; margin-top: 2rem; }
.about-list li {
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 1rem; font-size: 0.9rem;
}
.about-list li::before {
  content: '→'; color: var(--accent); font-family: var(--font-display);
  font-size: 0.8rem; flex-shrink: 0; margin-top: 0.15rem;
}

/* ─────────────────────────────────────────
   TEAM
───────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { border: 1px solid var(--border); overflow: hidden; }
.team-photo {
  height: 220px; background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.25rem; }
.team-info h4 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-info p { font-size: 0.75rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }

/* ─────────────────────────────────────────
   PROCESS / WHAT WE DO
───────────────────────────────────────── */
.process-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.step-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--accent); opacity: 0.3; line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem;
}
.step-content p { color: rgba(245,240,232,0.55); font-weight: 300; }

.stats-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-mini {
  border: 1px solid var(--border); padding: 1.5rem;
}
.stat-mini-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--accent);
}
.stat-mini-label {
  font-size: 0.75rem; color: rgba(245,240,232,0.4);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem;
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pricing-card { border: 1px solid var(--border); padding: 2.5rem; position: relative; }
.pricing-card.featured { border-color: var(--accent); }
.pricing-badge {
  position: absolute; top: -1px; left: 2rem;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem;
}
.plan-name {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem;
}
.plan-price {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.25rem;
}
.plan-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.plan-period { font-size: 0.8rem; color: rgba(245,240,232,0.4); margin-bottom: 2rem; }
.plan-features { list-style: none; margin-bottom: 2.5rem; }
.plan-features li {
  padding: 0.5rem 0; font-size: 0.9rem; color: rgba(245,240,232,0.7);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem;
}
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-features li.no::before { content: '✗'; color: rgba(245,240,232,0.2); }
.plan-features li.no { color: rgba(245,240,232,0.25); }

.addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.addon-item { border-left: 3px solid var(--accent); padding-left: 1.25rem; }
.addon-item h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
.addon-item .price { color: var(--accent); font-family: var(--font-display); font-size: 0.85rem; }

/* ─────────────────────────────────────────
   BLOG
───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { border: 1px solid var(--border); overflow: hidden; transition: border-color 0.3s; }
.blog-card:hover { border-color: rgba(255,60,31,0.4); }
.blog-card a { color: inherit; }
.blog-img {
  height: 200px; background: var(--card-bg);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-img-placeholder {
  font-size: 4rem; position: relative; z-index: 1;
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0a05 100%);
}
.blog-body { padding: 1.75rem; }
.blog-cat {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); font-weight: 700; margin-bottom: 0.75rem;
}
.blog-card h2, .blog-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.3;
}
.blog-card .entry-summary { font-size: 0.85rem; color: rgba(245,240,232,0.5); font-weight: 300; }
.blog-meta { margin-top: 1rem; font-size: 0.75rem; color: rgba(245,240,232,0.3); }

/* Single post */
.single-post-content { max-width: 780px; padding: 4rem 4vw 6rem; }
.single-post-content h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: -0.02em; }
.single-post-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.single-post-content p { color: rgba(245,240,232,0.7); margin-bottom: 1.25rem; font-weight: 300; }
.single-post-content ul { margin: 1rem 0 1.5rem 1.5rem; }
.single-post-content ul li { margin-bottom: 0.5rem; color: rgba(245,240,232,0.65); font-weight: 300; }
.post-back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent); font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2rem; }

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-info h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  margin-bottom: 1.5rem; letter-spacing: -0.03em;
}
.contact-info p { color: rgba(245,240,232,0.55); font-weight: 300; margin-bottom: 2rem; }
.contact-details { list-style: none; }
.contact-details li {
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; display: flex; gap: 1rem; align-items: flex-start;
}
.contact-details strong {
  color: var(--accent); min-width: 80px; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; margin-top: 0.15rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(245,240,232,0.5); margin-bottom: 0.5rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--card-bg); border: 1px solid var(--border);
  color: var(--white); padding: 0.85rem 1rem; font-family: var(--font-body);
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.wpcf7-submit, .contact-submit {
  width: 100%; background: var(--accent); color: #fff;
  padding: 1rem 2rem; font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--accent); cursor: pointer; transition: all 0.2s;
}
.wpcf7-submit:hover, .contact-submit:hover { background: transparent; color: var(--accent); }

/* ─────────────────────────────────────────
   PRIVACY / STATIC CONTENT
───────────────────────────────────────── */
.privacy-content { max-width: 800px; }
.privacy-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 2rem; }
.privacy-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin: 2.5rem 0 1rem; letter-spacing: -0.02em; }
.privacy-content p { color: rgba(245,240,232,0.65); font-weight: 300; margin-bottom: 1rem; }
.privacy-content ul { list-style: none; margin-bottom: 1rem; }
.privacy-content ul li { padding: 0.35rem 0; color: rgba(245,240,232,0.65); font-weight: 300; display: flex; gap: 0.75rem; }
.privacy-content ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.site-footer {
  background: var(--mid); border-top: 1px solid var(--border);
  padding: 4rem 4vw 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .site-title { font-size: 1rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(245,240,232,0.4); font-weight: 300; max-width: 250px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(245,240,232,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(245,240,232,0.3); flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: var(--accent); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; transition: all 0.2s;
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────
   TOAST NOTIFICATION
───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--accent); color: #fff; padding: 1rem 1.5rem;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transform: translateY(100px); opacity: 0; transition: all 0.4s;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ─────────────────────────────────────────
   WORDPRESS CORE CLASSES
───────────────────────────────────────── */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide { margin-left: -4vw; margin-right: -4vw; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8rem; color: rgba(245,240,232,0.4); margin-top: 0.5rem; text-align: center; }
.sticky { position: relative; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin: 2rem 0; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; }
.wp-block-image img { max-width: 100%; height: auto; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-navigation { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  section, .section { padding: 4rem 4vw; }
  .process-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-num { font-size: 2rem; }
  .stats-mini-grid { grid-template-columns: 1fr; }
}
