/*
Theme Name: Zone4Print
Theme URI: https://zone4print.com
Author: Zone4Print
Author URI: https://zone4print.com
Description: Original custom WordPress theme for Zone4Print – print, apparel and branding studio.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zone4print
*/

/* Basic reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background-color: #ffffff;
    line-height: 1.5;
}

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

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

a:hover {
    text-decoration: underline;
}

/* Layout helpers */
.site-main {
    min-height: 60vh;
}

.zone4-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.zone4-section {
    padding: 3.5rem 0;
}

.zone4-section--muted {
    background: #f3f4f6;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e5e7eb;
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.9rem 0;
}

.site-branding-title {
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.site-branding-sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.primary-navigation a {
    position: relative;
    padding-bottom: 0.1rem;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #ef4444;
    transition: width 0.18s ease;
}

.primary-navigation a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
}

/* Buttons */
.zone4-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.zone4-btn--primary {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(248, 113, 113, 0.4);
}

.zone4-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(248, 113, 113, 0.55);
}

.zone4-btn--ghost {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #111827;
}

.zone4-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #6b7280;
}

/* Hero */
.hero {
    padding-top: 3.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0.5rem 0 0.75rem;
}

.hero-title span {
    color: #ef4444;
}

.hero-subtitle {
    max-width: 30rem;
    color: #4b5563;
    font-size: 0.98rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.17em;
    color: #9ca3af;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-panel {
    border-radius: 1.6rem;
    min-height: 260px;
    background: radial-gradient(circle at top left, #f97316 0, #111827 40%, #020617 100%);
    position: relative;
    padding: 1.7rem;
    color: #e5e7eb;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.5);
}

.hero-panel-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    display: inline-flex;
}

.hero-panel-copy {
    margin-top: 1.2rem;
    font-size: 0.86rem;
    max-width: 16rem;
    color: #cbd5f5;
}

.hero-panel-badge {
    position: absolute;
    right: 1.7rem;
    bottom: 1.7rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #f97316 0, #ef4444 45%, #7c2d12 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-align: center;
}

/* Stats row */
.zone4-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 2.1rem;
}

.zone4-stat {
    min-width: 130px;
}

.zone4-stat strong {
    display: block;
    font-size: 1.7rem;
}

.zone4-stat span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.8rem;
    color: #6b7280;
}

/* Services grid */
.zone4-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.zone4-card {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    font-size: 0.9rem;
}

.zone4-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.zone4-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.86rem;
}

/* Process list */
.zone4-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.zone4-step {
    border-radius: 1.4rem;
    padding: 1.3rem 1.2rem;
    background: #111827;
    color: #e5e7eb;
}

.zone4-step-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}

.zone4-step-title {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

/* FAQ */
.zone4-faq {
    max-width: 48rem;
    margin: 0 auto;
}

.zone4-faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.zone4-faq-button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font: inherit;
}

.zone4-faq-question {
    font-size: 0.96rem;
    font-weight: 500;
}

.zone4-faq-toggle {
    font-size: 1.3rem;
    line-height: 1;
    color: #9ca3af;
}

.zone4-faq-answer {
    display: none;
    padding-bottom: 1rem;
    font-size: 0.88rem;
    color: #6b7280;
}

.zone4-faq-item.is-open .zone4-faq-answer {
    display: block;
}

/* CTA band */
.zone4-cta {
    border-radius: 1.7rem;
    padding: 2.1rem 2rem;
    background: radial-gradient(circle at 0 0, #f97316 0, #ef4444 40%, #111827 100%);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.zone4-cta p {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #020617;
    color: #9ca3af;
    padding: 2.7rem 0 2rem;
    font-size: 0.85rem;
}

.site-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer h3 {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: #e5e7eb;
    font-size: 0.94rem;
}

.site-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Coming soon */
.zone4-coming-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #fee2e2 0, #f9fafb 40%, #020617 100%);
}

.zone4-coming-card {
    background: rgba(15, 23, 42, 0.96);
    color: #e5e7eb;
    border-radius: 1.9rem;
    padding: 2.5rem 2.1rem;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

.zone4-coming-card h1 {
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
}

.zone4-coming-card p {
    margin-top: 0;
    margin-bottom: 1.3rem;
}

.zone4-coming-meta {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: #cbd5f5;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .zone4-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .zone4-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .site-footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header-inner {
        flex-wrap: wrap;
    }
    .primary-navigation {
        display: none; /* keep simple for first version */
    }
    .zone4-grid-3,
    .zone4-process,
    .site-footer-top {
        grid-template-columns: minmax(0, 1fr);
    }
    .zone4-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
