/*
Theme Name:        WPSlate Child
Theme URI:         https://wpslate.com
Description:       Child theme for Twenty Twenty-Five — WPSlate editorial brand identity
Author:            WPSlate
Author URI:        https://wpslate.com
Template:          twentytwentyfive
Version:           2.0.0
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       wpslate-child
*/

/* ============================================================
   WPSlate Brand Tokens
   ============================================================ */
:root {
	--ws-ink:      #0d0d0d;
	--ws-paper:    #fafaf8;
	--ws-blue:     #1a56db;
	--ws-muted:    #6b6b6b;
	--ws-rule:     rgba(13, 13, 13, 0.12);
	--ws-rule-hvy: rgba(13, 13, 13, 1);
	--ws-mono:     'Courier New', Courier, monospace;
	--ws-display:  'Bebas Neue', sans-serif;
	--ws-body:     'Inter', sans-serif;
	--ws-radius:   0px;
}

/* ============================================================
   Base
   ============================================================ */
body {
	background: var(--ws-paper);
	color: var(--ws-ink);
	font-family: var(--ws-body);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ws-display);
	font-weight: 400;
	letter-spacing: 1.5px;
	line-height: 1;
	color: var(--ws-ink);
}

p { font-weight: 300; line-height: 1.8; color: var(--ws-muted); }
p strong { color: var(--ws-ink); font-weight: 500; }

a { color: var(--ws-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   Navigation
   ============================================================ */
.wp-block-navigation {
	font-family: var(--ws-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.wp-block-navigation a {
	color: var(--ws-muted) !important;
	text-decoration: none;
	transition: color 0.15s;
}

.wp-block-navigation a:hover {
	color: var(--ws-ink) !important;
	text-decoration: none;
}

.wp-block-site-title a {
	font-family: var(--ws-display);
	font-size: 22px;
	letter-spacing: 3px;
	color: var(--ws-ink) !important;
	text-decoration: none;
}

/* ============================================================
   Buttons
   ============================================================ */
.wp-block-button__link,
.wp-element-button {
	font-family: var(--ws-body) !important;
	font-size: 11px !important;
	font-weight: 500 !important;
	letter-spacing: 2px !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	padding: 14px 32px !important;
	transition: background 0.15s, color 0.15s;
}

.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button:not([class*="is-style"]) .wp-block-button__link {
	background: var(--ws-ink) !important;
	color: var(--ws-paper) !important;
	border: none !important;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover {
	background: #333 !important;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent !important;
	color: var(--ws-ink) !important;
	border: 1.5px solid var(--ws-ink) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(13, 13, 13, 0.06) !important;
}

/* ============================================================
   Hero Section
   ============================================================ */
.wpslate-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	border-bottom: 1.5px solid var(--ws-ink);
}

.wpslate-hero-left {
	padding: 3.5rem 2.5rem;
	border-right: 1.5px solid var(--ws-ink);
}

.wpslate-hero-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 180px;
	padding: 1.5rem 2rem;
}

.wpslate-kicker {
	font-family: var(--ws-mono);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ws-muted);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

.wpslate-kicker::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--ws-blue);
	flex-shrink: 0;
}

.wpslate-hero-h1 {
	font-family: var(--ws-display);
	font-size: clamp(5rem, 11vw, 9rem);
	line-height: 0.92;
	letter-spacing: 2px;
	color: var(--ws-ink);
	margin-bottom: 2.5rem;
}

.wpslate-hero-h1 em {
	color: var(--ws-blue);
	font-style: normal;
}

.wpslate-hero-body {
	font-size: 15px;
	font-weight: 300;
	color: var(--ws-muted);
	line-height: 1.8;
	max-width: 480px;
	margin-bottom: 2.5rem;
}

.wpslate-stat {
	text-align: right;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--ws-rule);
}

.wpslate-stat:last-child { border-bottom: none; }

.wpslate-stat-n {
	font-family: var(--ws-display);
	font-size: 2.8rem;
	line-height: 1;
	color: var(--ws-ink);
}

.wpslate-stat-l {
	font-family: var(--ws-mono);
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ws-muted);
	margin-top: 4px;
}

/* ============================================================
   Info Strip
   ============================================================ */
.wpslate-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1.5px solid var(--ws-ink);
}

.wpslate-strip-item {
	padding: 1.25rem 2rem;
	border-right: 1px solid var(--ws-rule);
	display: flex;
	align-items: center;
	gap: 10px;
}

.wpslate-strip-item:last-child { border-right: none; }

.wpslate-strip-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ws-blue);
	flex-shrink: 0;
}

.wpslate-strip-text {
	font-family: var(--ws-mono);
	font-size: 11px;
	letter-spacing: 0.5px;
	color: var(--ws-muted);
}

.wpslate-strip-text strong {
	color: var(--ws-ink);
	font-weight: 500;
}

/* ============================================================
   Section Grid (label col + content col)
   ============================================================ */
.wpslate-section {
	display: grid;
	grid-template-columns: 280px 1fr;
	border-bottom: 1.5px solid var(--ws-ink);
}

.wpslate-section-label {
	padding: 2.5rem 2rem;
	border-right: 1.5px solid var(--ws-ink);
	position: relative;
	overflow: hidden;
}

.wpslate-section-num {
	font-family: var(--ws-mono);
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ws-blue);
}

.wpslate-section-title {
	font-family: var(--ws-display);
	font-size: 1.6rem;
	letter-spacing: 1px;
	margin-top: 0.25rem;
	color: var(--ws-ink);
}

.wpslate-section-ghost {
	font-family: var(--ws-display);
	font-size: 4rem;
	letter-spacing: 2px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	color: rgba(13, 13, 13, 0.07);
	line-height: 1;
	position: absolute;
	bottom: 2rem;
	left: 1.5rem;
	pointer-events: none;
	user-select: none;
}

.wpslate-section-content {
	padding: 2.5rem;
}

/* ============================================================
   About
   ============================================================ */
.wpslate-about-intro {
	font-size: 17px;
	font-weight: 300;
	line-height: 1.85;
	color: var(--ws-muted);
	border-bottom: 1px solid var(--ws-rule);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.wpslate-skills-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.wpslate-skill-label {
	font-family: var(--ws-mono);
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ws-muted);
	margin-bottom: 0.6rem;
}

.wpslate-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wpslate-chip {
	font-family: var(--ws-mono);
	font-size: 11px;
	padding: 4px 10px;
	border: 1px solid var(--ws-rule);
	color: var(--ws-ink);
	background: transparent;
}

.wpslate-chip.hi {
	border-color: var(--ws-blue);
	color: var(--ws-blue);
	background: rgba(26, 86, 219, 0.04);
}

.wpslate-cert-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1.5px solid var(--ws-ink);
	padding: 1rem 1.25rem;
	margin-top: 2rem;
}

.wpslate-cert-badge {
	font-family: var(--ws-display);
	font-size: 1.1rem;
	letter-spacing: 1px;
	color: var(--ws-blue);
	background: rgba(26, 86, 219, 0.07);
	padding: 4px 10px;
	white-space: nowrap;
}

.wpslate-cert-text {
	font-size: 13px;
	font-weight: 300;
	color: var(--ws-muted);
	line-height: 1.5;
}

/* ============================================================
   Experience
   ============================================================ */
.wpslate-exp-block {
	border-bottom: 1px solid var(--ws-rule);
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.wpslate-exp-block:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.wpslate-exp-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 1.25rem;
}

.wpslate-exp-role {
	font-family: var(--ws-display);
	font-size: 2rem;
	letter-spacing: 1px;
	line-height: 1;
	color: var(--ws-ink);
}

.wpslate-exp-meta {
	font-family: var(--ws-mono);
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ws-muted);
	margin-top: 6px;
}

.wpslate-exp-badge {
	font-family: var(--ws-mono);
	font-size: 10px;
	letter-spacing: 1px;
	padding: 4px 10px;
	border: 1px solid var(--ws-blue);
	color: var(--ws-blue);
	white-space: nowrap;
}

.wpslate-bullets {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.wpslate-bullets li {
	font-size: 13px;
	font-weight: 300;
	color: var(--ws-muted);
	line-height: 1.65;
	display: flex;
	gap: 12px;
}

.wpslate-bullets li::before {
	content: '—';
	color: var(--ws-blue);
	flex-shrink: 0;
}

/* ============================================================
   Services Grid
   ============================================================ */
.wpslate-svc-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.wpslate-svc-cell {
	padding: 2rem;
	border-right: 1px solid var(--ws-rule);
	border-bottom: 1px solid var(--ws-rule);
}

.wpslate-svc-cell:nth-child(2n)   { border-right: none; }
.wpslate-svc-cell:nth-child(3),
.wpslate-svc-cell:nth-child(4)    { border-bottom: none; }

.wpslate-svc-n {
	font-family: var(--ws-mono);
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--ws-muted);
	margin-bottom: 1rem;
}

.wpslate-svc-h {
	font-family: var(--ws-display);
	font-size: 1.6rem;
	letter-spacing: 1px;
	line-height: 1.1;
	margin-bottom: 0.6rem;
	color: var(--ws-ink);
}

.wpslate-svc-p {
	font-size: 13px;
	font-weight: 300;
	color: var(--ws-muted);
	line-height: 1.7;
}

.wpslate-svc-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 1rem;
}

.wpslate-svc-chip {
	font-family: var(--ws-mono);
	font-size: 10px;
	padding: 3px 8px;
	border: 1px solid var(--ws-rule);
	color: var(--ws-muted);
}

.wpslate-svc-cell.lead {
	background: var(--ws-ink);
}

.wpslate-svc-cell.lead .wpslate-svc-n  { color: rgba(250, 250, 248, 0.4); }
.wpslate-svc-cell.lead .wpslate-svc-h  { color: var(--ws-paper); }
.wpslate-svc-cell.lead .wpslate-svc-p  { color: rgba(250, 250, 248, 0.55); }
.wpslate-svc-cell.lead .wpslate-svc-chip {
	border-color: rgba(250, 250, 248, 0.2);
	color: rgba(250, 250, 248, 0.5);
}

/* ============================================================
   Contact
   ============================================================ */
.wpslate-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border-top: 1.5px solid var(--ws-ink);
	border-bottom: 1.5px solid var(--ws-ink);
}

.wpslate-contact-left {
	padding: 2.5rem;
	border-right: 1.5px solid var(--ws-ink);
}

.wpslate-contact-headline {
	font-family: var(--ws-display);
	font-size: 3.5rem;
	letter-spacing: 2px;
	line-height: 0.95;
	color: var(--ws-ink);
	margin-bottom: 2rem;
}

.wpslate-contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0.7rem 0;
	border-bottom: 1px solid var(--ws-rule);
}

.wpslate-contact-line:last-child { border-bottom: none; }

.wpslate-contact-line a {
	font-size: 13px;
	font-weight: 300;
	color: var(--ws-blue);
}

.wpslate-contact-line span {
	font-size: 13px;
	font-weight: 300;
	color: var(--ws-muted);
}

.wpslate-contact-right { padding: 2.5rem; }

/* ============================================================
   Contact Form
   ============================================================ */
.wpslate-form .wpslate-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.5rem;
}

.wpslate-form input,
.wpslate-form textarea,
.wpslate-form select,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	font-family: var(--ws-body);
	font-size: 13px;
	font-weight: 300;
	padding: 12px 0;
	background: transparent;
	border: none;
	border-bottom: 1.5px solid var(--ws-rule);
	color: var(--ws-ink);
	border-radius: 0;
	transition: border-color 0.15s;
	margin-bottom: 1rem;
}

.wpslate-form input:focus,
.wpslate-form textarea:focus,
.wpslate-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
	outline: none;
	border-bottom-color: var(--ws-blue);
}

.wpslate-form input::placeholder,
.wpslate-form textarea::placeholder {
	color: var(--ws-muted);
}

.wpslate-form select { color: var(--ws-muted); }
.wpslate-form textarea { height: 110px; resize: vertical; }

.wpslate-form button,
.wpslate-form input[type="submit"],
.wpcf7-form input[type="submit"] {
	font-family: var(--ws-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 14px 32px;
	background: var(--ws-ink);
	color: var(--ws-paper);
	border: none;
	border-radius: 0;
	cursor: pointer;
	transition: background 0.15s;
	width: 100%;
	margin-top: 0.5rem;
}

.wpslate-form button:hover,
.wpslate-form input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover {
	background: #333;
}

/* ============================================================
   Footer
   ============================================================ */
.wp-block-template-part[data-slug="footer"],
footer.wp-block-template-part {
	border-top: 1.5px solid var(--ws-ink);
	padding: 1rem 2.5rem;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.ws-ink      { color: var(--ws-ink); }
.ws-blue     { color: var(--ws-blue); }
.ws-muted    { color: var(--ws-muted); }
.ws-display  { font-family: var(--ws-display); }
.ws-mono     { font-family: var(--ws-mono); }
.ws-upper    { text-transform: uppercase; letter-spacing: 2px; }
.ws-rule-top { border-top: 1.5px solid var(--ws-ink); }
.ws-rule-bot { border-bottom: 1.5px solid var(--ws-ink); }
.ws-bg-ink   { background: var(--ws-ink); color: var(--ws-paper); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
	.wpslate-hero             { grid-template-columns: 1fr; }
	.wpslate-hero-right       { flex-direction: row; flex-wrap: wrap; border-top: 1.5px solid var(--ws-ink); }
	.wpslate-stat             { text-align: left; flex: 1; min-width: 120px; }
	.wpslate-strip            { grid-template-columns: 1fr 1fr; }
	.wpslate-section          { grid-template-columns: 1fr; }
	.wpslate-section-label    { border-right: none; border-bottom: 1.5px solid var(--ws-ink); padding: 1.5rem 2rem; }
	.wpslate-section-ghost    { display: none; }
	.wpslate-contact-grid     { grid-template-columns: 1fr; }
	.wpslate-contact-left     { border-right: none; border-bottom: 1.5px solid var(--ws-ink); }
	.wpslate-skills-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
	.wpslate-hero-h1          { font-size: 4.5rem; }
	.wpslate-strip            { grid-template-columns: 1fr; }
	.wpslate-svc-grid         { grid-template-columns: 1fr; }
	.wpslate-svc-cell         { border-right: none; }
	.wpslate-svc-cell:nth-child(n) { border-bottom: 1px solid var(--ws-rule); }
	.wpslate-form .wpslate-form-row { grid-template-columns: 1fr; }
	.wpslate-contact-headline { font-size: 2.5rem; }
}
