/*
Theme Name: Zapata Pro Painting & Drywall
Theme URI: https://zapataproltd.com/
Author: Zapata Pro Painting & Drywall
Description: Conversion-focused classic WordPress theme for Zapata Pro Painting & Drywall. Matches the approved React preview: green/charcoal/warm-neutral palette, Barlow Condensed display type, responsive sections for services, why-us, process, service areas, reviews/partners placeholders, and estimate contact.
Version: 2.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: zapata-pro
*/

/* ==========================================================================
   Design tokens (mirror of the React preview palette)
   ========================================================================== */
:root {
    --charcoal-50: #f7f6f2;
    --charcoal-100: #eceae4;
    --charcoal-200: #d8d5cc;
    --charcoal-300: #b4b0a6;
    --charcoal-400: #87837a;
    --charcoal-500: #625e56;
    --charcoal-600: #48443e;
    --charcoal-700: #35322e;
    --charcoal-800: #252321;
    --charcoal-900: #171614;
    --charcoal-950: #0d0d0c;
    --accent-50: #e6fff2;
    --accent-100: #c7f9dd;
    --accent-200: #8ff0b8;
    --accent-300: #4cdb8b;
    --accent-400: #00bf63;
    --accent-500: #00bf63;
    --accent-600: #00994f;
    --accent-700: #007a3f;
    --cream: #f8f5ee;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-display: "Barlow Condensed", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
    --shadow-sm: 0 1px 2px rgba(13, 13, 12, 0.05);
    --shadow-md: 0 8px 30px rgba(13, 13, 12, 0.04);
    --shadow-lg: 0 16px 40px rgba(13, 13, 12, 0.09);
    --radius-sm: 2px;
    --radius-md: 6px;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: light; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
    margin: 0;
    background: #fff;
    color: var(--charcoal-600);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--charcoal-950);
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}
h1 { font-size: 48px; line-height: 0.9; letter-spacing: -0.025em; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
@media (min-width: 640px) {
    h1 { font-size: 60px; }
    h2 { font-size: 48px; }
}
@media (min-width: 1024px) {
    h1 { font-size: 72px; }
}
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--accent-200); color: var(--charcoal-950); }
:focus-visible {
    outline: 3px solid var(--accent-500);
    outline-offset: 2px;
    border-radius: 2px;
}
.screen-reader-text, .sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.wrap {
    width: 100%;
    max-width: 1152px;
    margin-inline: auto;
    padding-inline: 20px;
}
@media (min-width: 640px) {
    .wrap { padding-inline: 32px; }
}
.section { padding: 64px 0; scroll-margin-top: 96px; }
@media (min-width: 640px) { .section { padding: 96px 0; } }
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; }
.bg-dark { background: var(--charcoal-950); color: #ddd; }
.bg-dark h2, .bg-dark h3 { color: #fff; }

/* ==========================================================================
   Eyebrows
   ========================================================================== */
.eyebrow,
.eyebrow-light {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.eyebrow { color: var(--accent-700); }
.eyebrow-light { color: var(--accent-400); }
.eyebrow .icon, .eyebrow-light .icon { display: inline-block; vertical-align: -3px; margin-right: 8px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    cursor: pointer;
    font-family: inherit;
}
.btn .icon { display: inline-block; }
.btn-primary { background: var(--accent-500); color: var(--charcoal-950); }
.btn-primary:hover, .btn-primary:focus { background: var(--accent-400); }
.btn-primary:active { background: var(--accent-600); }
.btn-outline-light { border-color: rgba(255, 255, 255, 0.35); color: #fff; background: transparent; }
.btn-outline-light:hover, .btn-outline-light:focus { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.1); }
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-md { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }
@media (min-width: 640px) { .btn-block-sm-auto { width: auto; } }

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus {
    left: 16px; top: 16px; z-index: 200;
    background: var(--accent-500); color: var(--charcoal-950);
    padding: 10px 16px; border-radius: var(--radius-md);
    font-weight: 600; text-decoration: none;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(214, 211, 209, 0.8);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    min-height: 64px;
}
@media (min-width: 640px) { .header-inner { min-height: 72px; } }
.brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--charcoal-950);
}
.brand-logo {
    display: flex; align-items: center; justify-content: center;
    width: 64px; height: 44px; overflow: hidden;
    background: var(--charcoal-900);
    border-radius: var(--radius-md);
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.brand strong {
    display: block;
    font-family: var(--font-display); font-size: 20px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.03em; line-height: 1.1;
    color: var(--charcoal-950);
}
.brand small {
    display: block;
    font-size: 10px; font-weight: 600; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--stone-500); line-height: 1.4;
}
.main-nav ul {
    display: flex; align-items: center; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.main-nav a {
    font-size: 14px; font-weight: 600; color: var(--charcoal-900);
    text-decoration: none;
    transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus { color: var(--accent-600); }
@media (max-width: 1023.98px) { .main-nav { display: none; } }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: none; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--charcoal-900);
    text-decoration: none;
}
.header-phone .icon { color: var(--accent-600); }
@media (min-width: 768px) { .header-phone { display: inline-flex; } }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }
.menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid var(--stone-300); border-radius: var(--radius-sm);
    padding: 10px 14px; font-size: 14px; font-weight: 600; color: var(--charcoal-950);
    cursor: pointer; font-family: inherit;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-nav { display: none; border-top: 1px solid rgba(214, 211, 209, 0.8); background: #fff; }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 12px 20px; }
.mobile-nav li { border-bottom: 1px solid var(--charcoal-100); }
.mobile-nav li:last-child { border-bottom: none; }
.mobile-nav a {
    display: block; padding: 12px 0;
    font-size: 16px; font-weight: 600; color: var(--charcoal-900);
    text-decoration: none;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--accent-600); }
.mobile-nav .mobile-cta-wrap { padding: 4px 20px 16px; }
.mobile-nav .mobile-phone { padding: 4px 20px 16px; font-size: 14px; color: var(--stone-500); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative; overflow: hidden;
    background: var(--charcoal-950); color: #fff;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob-a { right: -128px; top: -128px; width: 384px; height: 384px; background: rgba(0, 191, 99, 0.15); filter: blur(48px); }
.hero-blob-b { left: -96px; bottom: -160px; width: 384px; height: 384px; background: rgba(53, 50, 46, 0.3); filter: blur(48px); }
.hero-grid {
    position: relative; z-index: 1;
    display: grid; gap: 48px; align-items: center;
    padding: 64px 0;
}
@media (min-width: 640px) { .hero-grid { padding: 80px 0; } }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.15fr 1fr; padding: 96px 0; } }
.hero h1 { color: #fff; margin-top: 16px; }
.hero h1 span { display: block; color: var(--accent-400); }
.hero-intro { margin-top: 20px; max-width: 576px; font-size: 18px; line-height: 1.625; color: var(--stone-300); }
.hero-intro strong { font-weight: 600; color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-list {
    display: flex; flex-wrap: wrap; gap: 12px 24px;
    list-style: none; margin: 32px 0 0; padding: 0;
    font-size: 14px; font-weight: 500; color: var(--stone-300);
}
.hero-list .icon { color: var(--accent-400); vertical-align: -2px; margin-right: 8px; }
.color-strip { display: flex; gap: 12px; margin-top: 32px; }
@media (min-width: 768px) { .color-strip { display: none; } }
.color-strip .strip-swatch { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.color-strip .strip-dot { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.1); }
.color-strip .strip-name { font-size: 10px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.hero-art {
    position: relative; display: none;
    height: 430px; min-height: 0;
}
@media (min-width: 768px) { .hero-art { display: block; } }
.hero-art img.featured-hero {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 8px; box-shadow: var(--shadow-lg);
}
.swatch-deck { position: relative; height: 430px; }
.swatch-card {
    position: absolute;
    width: 144px; overflow: hidden;
    background: #fff; border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.swatch-color { height: 96px; }
.swatch-label { padding: 8px 12px; }
.swatch-label strong { display: block; font: 600 14px/1.3 var(--font-sans); color: var(--charcoal-950); }
.swatch-label span { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone-500); }
.swatch-tape {
    position: absolute; top: -8px; left: 6%;
    width: 176px; height: 32px; border-radius: var(--radius-sm);
    background: rgba(76, 219, 139, 0.9); /* accent-300 */
    box-shadow: var(--shadow-sm);
    transform: rotate(-9deg); z-index: 6;
}
.swatch-chip {
    position: absolute; right: 2%; bottom: -4px; z-index: 7;
    display: flex; align-items: center; gap: 8px;
    background: #fff; border-radius: 999px;
    padding: 8px 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 14px; font-weight: 600; color: var(--charcoal-950);
}
.swatch-chip .chip-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent-500); }
.hero-tape {
    position: absolute; bottom: -14px; left: -5%;
    width: 70%; height: 28px; border-radius: var(--radius-sm);
    background: rgba(0, 191, 99, 0.25);
    transform: rotate(-2deg);
}

/* ==========================================================================
   Trust stats strip
   ========================================================================== */
.stats { background: var(--accent-500); }
.stats-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px; padding: 40px 0;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat strong {
    display: block;
    font-family: var(--font-display); font-size: 36px; font-weight: 700;
    text-transform: uppercase; letter-spacing: -0.025em; line-height: 1;
    color: var(--charcoal-950);
}
@media (min-width: 640px) { .stat strong { font-size: 48px; } }
.stat span {
    display: block; margin-top: 4px; max-width: 180px;
    font-size: 14px; font-weight: 600; line-height: 1.375;
    color: rgba(13, 13, 12, 0.8);
}

/* ==========================================================================
   Section headings
   ========================================================================== */
.section-heading { max-width: 640px; }
.section-heading h2 { margin-top: 8px; }
.section-heading p { margin-top: 16px; font-size: 18px; line-height: 1.625; }

/* ==========================================================================
   Services
   ========================================================================== */
.cards { display: grid; gap: 24px; margin-top: 48px; list-style: none; padding: 0; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
    display: flex; flex-direction: column;
    border: 1px solid rgba(216, 213, 204, 0.7); /* charcoal-200 */
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card-icon {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: var(--charcoal-50); color: var(--charcoal-800);
    transition: background-color 0.3s, color 0.3s;
}
.card:hover .card-icon { background: var(--accent-500); color: var(--charcoal-950); }
.card h3 { margin: 16px 0 8px; }
.card p { font-size: 14px; line-height: 1.625; flex: 1; }
.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: 14px; font-weight: 600;
    color: var(--accent-700); text-decoration: none;
    text-underline-offset: 4px;
}
.card-link:hover, .card-link:focus { text-decoration: underline; }
.services-note { margin-top: 40px; text-align: center; font-size: 16px; color: var(--stone-500); }
.services-note a { font-weight: 600; color: var(--accent-700); text-underline-offset: 4px; }
.services-note a:hover { text-decoration: underline; }

/* ==========================================================================
   Why us
   ========================================================================== */
.why-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-copy p.lead { margin-top: 20px; font-size: 18px; line-height: 1.625; }
.quote-box {
    margin-top: 32px; background: var(--charcoal-900); color: #fff;
    border-radius: var(--radius-sm); padding: 24px;
}
@media (min-width: 640px) { .quote-box { padding: 32px; } }
.quote-box blockquote {
    margin: 0;
    font-family: var(--font-display); font-size: 24px; line-height: 1.375; color: #fff;
}
.quote-box cite {
    display: block; margin-top: 12px; font-style: normal;
    font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--accent-400);
}
.reasons { display: grid; gap: 20px; list-style: none; margin: 0; padding: 0; }
@media (min-width: 640px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
.reason {
    border: 1px solid var(--stone-300); border-radius: var(--radius-sm);
    background: #fff; padding: 24px; box-shadow: var(--shadow-sm);
}
.reason-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: var(--accent-100); color: var(--accent-700);
}
.reason h3 { margin-top: 16px; font-size: 20px; line-height: 1.25; }
.reason p { margin-top: 8px; font-size: 14px; line-height: 1.625; }

/* ==========================================================================
   Process
   ========================================================================== */
.steps { display: grid; gap: 24px; margin-top: 48px; list-style: none; padding: 0; }
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
    position: relative;
    border: 1px solid var(--stone-300); border-radius: var(--radius-sm);
    background: #fff; padding: 24px; box-shadow: var(--shadow-sm);
}
.step-num {
    display: block;
    font-family: var(--font-display); font-size: 48px; font-weight: 700;
    text-transform: uppercase; letter-spacing: -0.025em; line-height: 1;
    color: var(--charcoal-100);
}
.step h3 { margin-top: 12px; }
.step p { margin-top: 8px; font-size: 14px; line-height: 1.625; }
.cta-band {
    display: flex; flex-direction: column; align-items: center; gap: 16px;
    text-align: center;
    margin-top: 48px; padding: 40px 32px;
    background: var(--charcoal-900); border-radius: var(--radius-sm); color: #fff;
}
@media (min-width: 640px) {
    .cta-band { flex-direction: row; justify-content: space-between; text-align: left; }
}
.cta-band h3 { color: #fff; font-size: 30px; }
.cta-band p { margin-top: 4px; color: var(--stone-300); }
.cta-band .btn { flex-shrink: 0; }

/* ==========================================================================
   Service area
   ========================================================================== */
.areas { display: grid; gap: 20px; margin-top: 48px; list-style: none; padding: 0; }
@media (min-width: 640px) { .areas { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .areas { grid-template-columns: repeat(4, 1fr); } }
.area {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    transition: border-color 0.2s, background-color 0.2s;
}
.area:hover { border-color: rgba(0, 191, 99, 0.5); background: rgba(255, 255, 255, 0.1); }
.area-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: rgba(0, 191, 99, 0.2); color: var(--accent-400);
}
.area h3 { margin-top: 16px; color: #fff; }
.area p { margin-top: 4px; font-size: 14px; color: var(--stone-300); }
.areas-note { margin-top: 32px; font-size: 14px; color: var(--stone-400); }
.areas-note a { font-weight: 600; color: var(--accent-400); text-underline-offset: 4px; }
.areas-note a:hover { text-decoration: underline; }

/* ==========================================================================
   Reviews & partners
   ========================================================================== */
.reviews-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
.review-box {
    border: 1px solid var(--stone-300);
    border-radius: var(--radius-sm);
    background: var(--cream);
    padding: 32px;
}
@media (min-width: 640px) { .review-box { padding: 40px; } }
.review-box h2 { margin-top: 8px; }
.review-box > p { margin-top: 16px; line-height: 1.625; }
.placeholder-pill {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    background: var(--stone-200, #e7e5e4); color: var(--stone-600);
    border-radius: var(--radius-md); padding: 12px 20px;
    font-size: 14px; font-weight: 600;
}
.partner-box {
    border: 1px dashed var(--stone-300);
    border-radius: var(--radius-sm);
    background: #fafaf9; /* stone-50 */
    padding: 32px;
}
@media (min-width: 640px) { .partner-box { padding: 40px; } }
.partner-box h2 { margin-top: 8px; }
.partner-box > p { margin-top: 16px; line-height: 1.625; }
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
@media (min-width: 640px) { .partner-grid { grid-template-columns: repeat(3, 1fr); } }
.partner-tile {
    display: flex; align-items: center; justify-content: center;
    min-height: 64px; padding: 0 12px; text-align: center;
    border: 1px dashed var(--stone-300); border-radius: 8px;
    background: #fff;
    font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; color: var(--stone-400);
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.contact-copy p.lead { margin-top: 16px; font-size: 18px; line-height: 1.625; }
.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--charcoal-900); color: var(--accent-400);
}
.contact-list .label {
    display: block; font-size: 12px; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone-500);
}
.contact-list .value { font-weight: 600; color: var(--charcoal-950); }
.contact-list .value a { text-decoration: none; }
.contact-list .value a:hover, .contact-list .value a:focus { color: var(--accent-700); }
.form-box {
    background: #fff; border: 1px solid var(--stone-300);
    border-radius: var(--radius-sm);
    padding: 24px; box-shadow: var(--shadow-md);
}
@media (min-width: 640px) { .form-box { padding: 32px; } }
.estimate-form { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--charcoal-900); }
.field label .req { color: var(--accent-600); }
.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--stone-300);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 10px 14px;
    font: 400 14px/1.5 var(--font-sans);
    color: var(--charcoal-950);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-500); outline: none; }
.field input.has-error, .field textarea.has-error { border-color: #f87171; }
.field .field-error { font-size: 12px; font-weight: 500; color: #dc2626; }
.field textarea { min-height: 96px; resize: vertical; }
.form-foot {
    margin-top: 4px; font-size: 12px; line-height: 1.5; color: var(--stone-500);
}
.form-success {
    display: none;
    border: 1px solid #a7f3d0; border-radius: 12px; background: #ecfdf5;
    padding: 32px; gap: 16px; align-items: flex-start;
}
.form-success.show { display: flex; flex-direction: column; }
.form-success .success-icon {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 50%;
    background: #059669; color: #fff;
}
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--charcoal-600); line-height: 1.625; }
.form-success strong { color: var(--charcoal-950); }
.form-success .btn-reset {
    background: none; border: none; padding: 0;
    font-size: 14px; font-weight: 600; color: var(--accent-700);
    text-underline-offset: 2px; cursor: pointer; font-family: inherit;
}
.form-success .btn-reset:hover { text-decoration: underline; }
.noscript-note {
    margin-top: 12px; font-size: 12px; color: var(--stone-500);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal-950); color: var(--stone-300); }
.footer-grid {
    display: grid; gap: 40px; padding: 56px 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand .brand-logo { background: rgba(255, 255, 255, 0.1); }
.footer-brand .brand strong { color: #fff; }
.footer-brand .brand small { color: var(--stone-400); }
.footer-brand p { margin-top: 16px; max-width: 288px; font-size: 14px; line-height: 1.625; }
.site-footer h3 {
    color: #fff; font-family: var(--font-sans);
    font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; margin: 0;
}
.site-footer ul { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { text-decoration: none; transition: color 0.15s; }
.site-footer .footer-nav a:hover, .site-footer .footer-nav a:focus { color: var(--accent-400); }
.footer-area li, .footer-contact li { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.footer-contact .icon, .footer-area .icon { color: var(--accent-400); flex-shrink: 0; }
.footer-contact a:hover, .footer-contact a:focus { color: var(--accent-400); }
.social-block { margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 16px; }
.social-block .social-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #fff; }
.social-block ul { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 8px; }
.social-block a { color: var(--accent-400); font-size: 14px; }
.social-block a:hover { text-decoration: underline; }
.social-block .pending { color: var(--stone-500); font-size: 14px; }
.copyright-bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.copyright-inner {
    display: flex; flex-direction: column; gap: 8px;
    padding: 20px 0; font-size: 12px; color: var(--stone-400);
}
@media (min-width: 640px) {
    .copyright-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ==========================================================================
   Icons (inline SVG defaults)
   ========================================================================== */
.icon {
    display: inline-block;
    width: 24px; height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 14px; height: 14px; }
.icon-filled { fill: currentColor; stroke: none; }

/* ==========================================================================
   Default page fallback (index.php)
   ========================================================================== */
.entry-content { padding: 64px 0; }
.entry-content h2 { margin: 32px 0 12px; }
.entry-content p { margin: 12px 0; }
