/*
Theme Name: MaryMaking
Theme URI: https://marymaking.com
Author: Mary Scheske
Author URI: https://marymaking.com
Description: Custom portfolio theme for MaryMaking Web & Media Design
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: marymaking
*/

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg);
    overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Rubik', sans-serif; font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TOKENS ===== */
:root {
    --rose:       #c0436e;
    --rose-dark:  #9e3259;
    --rose-light: #f0d0de;
    --rose-pale:  #fdf4f8;
    --charcoal:   #1a1a1a;
    --text-dark:  #1a1a1a;
    --text-mid:   #555555;
    --text-light: #999999;
    --bg:         #f7f5f3;
    --border:     #e0dcd8;
    --d:  700ms;
    --e:  cubic-bezier(0.19, 1, 0.22, 1);
}

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

/* ===== TYPOGRAPHY ===== */
.eyebrow {
    font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--rose);
    display: block; margin-bottom: 14px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    text-align: center; margin-bottom: 12px; color: var(--text-dark);
}
.section-subtitle {
    text-align: center; color: var(--text-mid);
    max-width: 600px; margin: 0 auto 56px;
    font-family: 'Cardo', serif; font-style: italic; font-size: 19px; line-height: 1.7;
}
.highlight { color: var(--rose); }

/* ===== NAVIGATION ===== */
nav {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 64px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000; display: flex; align-items: center;
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    height: 100%; width: 100%;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.logo span { color: var(--rose); }
.nav-menu { display: flex; gap: 2px; align-items: center; }
.nav-menu a {
    font-size: 13px; font-weight: 500; color: var(--text-mid);
    padding: 6px 14px; transition: color 0.2s; letter-spacing: 0.02em;
}
.nav-menu a:hover, .nav-menu a.active, .nav-menu .current-menu-item a { color: var(--rose); }
.social-nav {
    display: flex; align-items: center; gap: 4px;
    margin-left: 16px; padding-left: 16px;
    border-left: 1px solid var(--border);
}
.social-icon {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-mid); font-size: 14px; transition: color 0.2s;
}
.social-icon:hover { color: var(--rose); }
.menu-toggle {
    display: none; background: none; border: none;
    font-size: 22px; color: var(--text-dark); cursor: pointer; padding: 8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px;
    font-family: 'Rubik', sans-serif; font-weight: 700;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.2s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: #fff; }
.btn-primary:hover { background: var(--rose); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); transform: translateY(-2px); }

/* ===== HERO DARK ===== */
.hero-dark {
    background: var(--charcoal);
    padding: 148px 0 96px;
    position: relative; overflow: hidden;
}
.hero-dark::before {
    content: '';
    position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(192,67,110,0.09) 0%, transparent 70%);
    pointer-events: none;
}
.available-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.65); padding: 6px 16px;
    font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 28px;
}
.available-dot {
    width: 7px; height: 7px; background: #4ade80; border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(74,222,128,0.3); flex-shrink: 0;
}
.hero-dark h1 {
    font-size: clamp(40px, 5.5vw, 72px); color: #fff;
    margin-bottom: 24px; line-height: 1.06; max-width: 820px;
}
.hero-dark h1 em {
    font-family: 'Cardo', serif; font-style: italic;
    font-weight: 400; color: rgba(255,255,255,0.7);
}
.hero-sub {
    font-family: 'Cardo', serif; font-style: italic;
    font-size: 20px; color: rgba(255,255,255,0.48);
    max-width: 520px; line-height: 1.7; margin-bottom: 40px;
}
.hero-sub strong {
    font-family: 'Rubik', sans-serif; font-style: normal;
    font-weight: 500; color: rgba(255,255,255,0.78);
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
    display: block; margin-bottom: 10px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-stats {
    display: flex; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.07); padding-top: 44px;
}
.hero-stat {
    flex: 1; min-width: 130px;
    padding-right: 32px; margin-right: 32px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-stat-number { font-size: 52px; font-weight: 700; color: #fff; line-height: 1; display: block; }
.hero-stat-label {
    font-family: 'Cardo', serif; font-style: italic;
    font-size: 15px; color: rgba(255,255,255,0.38); margin-top: 7px; display: block;
}

/* ===== HERO LIGHT ===== */
.hero-light { background: var(--bg); padding: 136px 0 72px; border-bottom: 1px solid var(--border); }
.hero-light h1 { font-size: clamp(32px, 5vw, 56px); color: var(--text-dark); margin-bottom: 14px; }
.hero-light p { font-family: 'Cardo', serif; font-style: italic; font-size: 20px; color: var(--text-mid); max-width: 560px; line-height: 1.7; }

/* ===== ABOUT HERO ===== */
.about-hero { background: var(--charcoal); padding: 136px 0 80px; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: center; }
.about-hero h1 { font-size: clamp(36px, 5vw, 60px); color: #fff; margin-bottom: 20px; }
.headshot { width: 280px; height: 320px; object-fit: cover; border: 2px solid rgba(192,67,110,0.3); }
.headshot-placeholder {
    width: 280px; height: 320px;
    background: rgba(255,255,255,0.03); border: 2px dashed rgba(255,255,255,0.10);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.headshot-placeholder i { font-size: 48px; color: rgba(255,255,255,0.12); }
.headshot-placeholder p { font-family: 'Cardo', serif; font-style: italic; font-size: 13px; color: rgba(255,255,255,0.22); text-align: center; padding: 0 24px; line-height: 1.6; }

/* ===== SECTIONS ===== */
.section-white   { background: #fff;             padding: 96px 0; }
.section-surface { background: var(--bg);        padding: 96px 0; }
.section-pale    { background: var(--rose-pale); padding: 96px 0; }

/* ===== HOVER CARDS ===== */
.hover-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.hover-cards-grid-home { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

.hc {
    position: relative; display: flex; align-items: flex-end;
    overflow: hidden; height: 420px;
    color: whitesmoke; background-color: whitesmoke;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1), 0 2px 2px rgba(0,0,0,0.1),
        0 4px 4px rgba(0,0,0,0.1), 0 8px 8px rgba(0,0,0,0.1), 0 16px 16px rgba(0,0,0,0.1);
}
.hc-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 110%;
    background-size: cover; background-position: 0 0;
    transition: transform calc(var(--d) * 1.5) var(--e); pointer-events: none;
}
.hc-overlay {
    display: block; position: absolute; top: 0; left: 0; width: 100%; height: 200%;
    pointer-events: none;
    background-image: linear-gradient(to bottom,
        hsla(0,0%,0%,0) 0%, hsla(0,0%,0%,0.009) 11.7%, hsla(0,0%,0%,0.034) 22.1%,
        hsla(0,0%,0%,0.072) 31.2%, hsla(0,0%,0%,0.123) 39.4%, hsla(0,0%,0%,0.182) 46.6%,
        hsla(0,0%,0%,0.249) 53.1%, hsla(0,0%,0%,0.320) 58.9%, hsla(0,0%,0%,0.394) 64.3%,
        hsla(0,0%,0%,0.468) 69.3%, hsla(0,0%,0%,0.540) 74.1%, hsla(0,0%,0%,0.607) 78.8%,
        hsla(0,0%,0%,0.668) 83.6%, hsla(0,0%,0%,0.721) 88.7%, hsla(0,0%,0%,0.762) 94.1%,
        hsla(0,0%,0%,0.790) 100%);
    transform: translateY(0); transition: transform calc(var(--d) * 2) var(--e);
}
.hc-content {
    position: relative; display: flex; flex-direction: column; align-items: center;
    width: 100%; padding: 1rem; transition: transform var(--d) var(--e);
    z-index: 1; text-align: center;
}
.hc-content > * + * { margin-top: 1rem; }
.hc-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; }
.hc-title { font-size: 1.15rem; font-weight: 700; line-height: 1.25; color: whitesmoke; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hc-desc { font-family: 'Cardo', serif; font-size: 1.05rem; font-style: italic; line-height: 1.4; color: rgba(255,255,255,0.88); margin: 0; }
.hc-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.hc-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.06em; padding: 4px 10px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); color: rgba(255,255,255,0.9); }
.hc-btn { cursor: pointer; padding: 0.75rem 1.5rem; font-family: 'Rubik', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: white; background-color: black; border: none; display: inline-block; transition: background 0.2s; text-decoration: none; }
.hc-btn:hover { background-color: var(--rose); }

@media (hover: hover) {
    .hc-overlay { transform: translateY(0); }
    .hc-content { transform: translateY(calc(100% - 6rem)); }
    .hc-content > *:not(.hc-title):not(.hc-cat) { opacity: 0; transform: translateY(1rem); transition: transform var(--d) var(--e), opacity var(--d) var(--e); }
    .hc:hover { align-items: center; }
    .hc:hover .hc-bg  { transform: translateY(-4%); }
    .hc:hover .hc-overlay { transform: translateY(-50%); }
    .hc:hover .hc-content { transform: translateY(0); }
    .hc:hover .hc-content > *:not(.hc-title):not(.hc-cat) { opacity: 1; transform: translateY(0); transition-delay: calc(var(--d) / 8); }
}

/* ===== SKILL PILLARS ===== */
.skill-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.skill-pillar { background: #fff; padding: 32px; border: 1px solid var(--border); transition: border-color 0.2s; }
.skill-pillar:hover { border-color: var(--rose); }
.pillar-icon { width: 48px; height: 48px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pillar-icon i { font-size: 20px; color: var(--rose); }
.skill-pillar h4 { font-size: 18px; margin-bottom: 8px; color: var(--text-dark); }
.pillar-sub { font-family: 'Cardo', serif; font-style: italic; font-size: 16px; color: var(--text-mid); margin-bottom: 20px; line-height: 1.6; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.skill-tag { background: var(--bg); color: var(--text-dark); border: 1px solid var(--border); padding: 4px 12px; font-size: 12px; font-weight: 500; }

/* ===== PROCESS ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-step { background: #fff; padding: 32px 24px; border: 1px solid var(--border); text-align: center; transition: border-color 0.2s; }
.process-step:hover { border-color: var(--charcoal); }
.step-num { width: 48px; height: 48px; background: var(--charcoal); color: #fff; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 20px; font-weight: 700; margin: 0 auto 20px; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.process-step p { font-family: 'Cardo', serif; font-style: italic; font-size: 16px; color: var(--text-mid); line-height: 1.6; }

/* ===== STATS BAND ===== */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); margin-top: 64px; }
.stat-box { padding: 40px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-box:last-child { border-right: none; }
.stat-number-lg { font-size: 52px; font-weight: 700; color: var(--text-dark); line-height: 1; display: block; }
.stat-label-lg { font-family: 'Cardo', serif; font-style: italic; font-size: 15px; color: var(--text-mid); margin-top: 8px; display: block; }

/* ===== TIMELINE ===== */
.timeline-item { background: #fff; padding: 28px 32px; border: 1px solid var(--border); margin-bottom: 12px; transition: border-color 0.2s; }
.timeline-item:hover { border-color: var(--rose); }
.timeline-date { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 6px; }
.timeline-title { font-size: 20px; color: var(--text-dark); margin-bottom: 4px; }
.timeline-company { font-family: 'Cardo', serif; font-style: italic; font-size: 15px; color: var(--text-light); margin-bottom: 14px; }
.timeline-desc li { font-size: 14px; color: var(--text-mid); padding-left: 18px; position: relative; margin-bottom: 6px; line-height: 1.6; }
.timeline-desc li::before { content: '→'; position: absolute; left: 0; color: var(--rose); font-size: 11px; top: 4px; }

/* ===== JOB CARDS ===== */
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.job-card { background: #fff; padding: 28px; border: 1px solid var(--border); display: flex; flex-direction: column; transition: border-color 0.2s; }
.job-card:hover { border-color: var(--rose); }
.job-icon { width: 48px; height: 48px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.job-icon i { font-size: 20px; color: var(--rose); }
.job-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--text-dark); }
.job-role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 2px; }
.job-company { font-family: 'Cardo', serif; font-style: italic; font-size: 14px; color: var(--text-light); margin-bottom: 14px; }
.job-desc { font-family: 'Cardo', serif; font-style: italic; font-size: 15px; color: var(--text-mid); line-height: 1.7; flex-grow: 1; margin-bottom: 16px; }
.job-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.job-badge { background: var(--rose-pale); color: var(--rose); padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }

/* ===== EDUCATION ===== */
.edu-item { padding: 18px 22px; border-left: 3px solid var(--charcoal); background: #fff; margin-bottom: 10px; }
.edu-item h4 { font-size: 15px; color: var(--text-dark); margin-bottom: 4px; }
.edu-item p { font-family: 'Cardo', serif; font-style: italic; font-size: 14px; color: var(--text-mid); }

/* ===== FEATURED PROJECT ===== */
.featured-project { background: #fff; border: 1px solid var(--border); padding: 40px; display: grid; grid-template-columns: 90px 1fr; gap: 32px; align-items: start; margin-bottom: 16px; transition: border-color 0.2s; }
.featured-project:hover { border-color: var(--rose); }
.featured-icon { width: 90px; height: 90px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; }
.featured-icon i { font-size: 40px; color: var(--rose); opacity: 0.5; }
.featured-project h3 { font-size: 24px; margin-bottom: 6px; color: var(--text-dark); }
.featured-project p { font-family: 'Cardo', serif; font-style: italic; font-size: 17px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }

/* ===== CARD HELPERS ===== */
.card-category { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; display: block; }
.result-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.result-badge { background: var(--rose-pale); color: var(--rose); padding: 4px 10px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }

/* ===== PORTFOLIO MARKETING CARDS ===== */
.portfolio-grid-home { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.portfolio-card-home { background: #fff; border: 1px solid var(--border); padding: 32px; transition: border-color 0.2s; }
.portfolio-card-home:hover { border-color: var(--rose); }
.card-icon-wrap { width: 48px; height: 48px; background: var(--rose-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.card-icon-wrap i { font-size: 20px; color: var(--rose); }
.portfolio-card-home h3 { font-size: 20px; margin-bottom: 10px; color: var(--text-dark); }
.portfolio-card-home p { font-family: 'Cardo', serif; font-style: italic; font-size: 16px; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; }

/* ===== FILTER BUTTONS ===== */
.filter-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }
.filter-btn { padding: 8px 22px; background: #fff; border: 1px solid var(--border); font-family: 'Rubik', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; color: var(--text-mid); }
.filter-btn.active, .filter-btn:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }

/* ===== SOCIAL PROOF ===== */
.social-proof { background: var(--charcoal); padding: 96px 0; }
.social-proof .section-title { color: #fff; }
.social-proof .section-subtitle { color: rgba(255,255,255,0.4); }
.social-proof .eyebrow { color: rgba(255,255,255,0.35); text-align:center; display:block; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.proof-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); padding: 32px; transition: border-color 0.2s; }
.proof-card:hover { border-color: rgba(192,67,110,0.3); }
.proof-stars { color: var(--rose); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; display: block; }
.proof-quote { font-family: 'Cardo', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 24px; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.author-initials { width: 40px; height: 40px; background: var(--rose); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.author-name { font-size: 14px; font-weight: 700; color: #fff; display: block; }
.author-title { font-family: 'Cardo', serif; font-style: italic; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--charcoal); padding: 80px 0; text-align: center; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 44px); color: #fff; margin-bottom: 14px; }
.cta-banner p { font-family: 'Cardo', serif; font-style: italic; font-size: 19px; color: rgba(255,255,255,0.52); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; }
.contact-info-col h3 { font-size: 26px; color: var(--text-dark); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 15px; color: var(--text-mid); }
.contact-detail i { color: var(--rose); margin-top: 2px; width: 18px; flex-shrink: 0; }
.contact-social { display: flex; gap: 8px; margin: 24px 0; }
.contact-social a { width: 38px; height: 38px; background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-mid); font-size: 15px; transition: all 0.2s; }
.contact-social a:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.rate-card { background: #fff; padding: 24px; border: 1px solid var(--border); }
.rate-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 16px; display: block; }
.rate-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.rate-row:last-of-type { border-bottom: none; }
.rate-row strong { color: var(--text-dark); }
.rate-row span { color: var(--text-mid); font-size: 13px; }
.rate-note { font-family: 'Cardo', serif; font-style: italic; font-size: 13px; color: var(--text-light); margin-top: 12px; }
.contact-form { background: #fff; padding: 40px; border: 1px solid var(--border); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; font-weight: 700; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); font-family: 'Rubik', sans-serif; font-size: 15px; color: var(--text-dark); background: var(--bg); transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--charcoal); outline: none; background: #fff; }
.form-note { font-family: 'Cardo', serif; font-style: italic; font-size: 13px; color: var(--text-light); margin-top: 14px; text-align: center; }

/* ===== CLIENT GRID ===== */
.client-section { padding: 96px 0; background: var(--charcoal); }
.client-section .section-title { color: #fff; }
.client-section .section-subtitle { color: rgba(255,255,255,0.4); }
.client-section .eyebrow { color: rgba(255,255,255,0.35); text-align:center; display:block; }
.client-category { margin-bottom: 52px; }
.client-category:last-child { margin-bottom: 0; }
.client-category-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.client-category-title i { font-size: 12px; }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.client-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); padding: 14px 16px; transition: all 0.2s; }
.client-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(192,67,110,0.3); }
.client-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 8px; line-height: 1.3; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.svc { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 2px 7px; white-space: nowrap; }
.svc-web  { background: rgba(28,28,46,0.8);    color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.10); }
.svc-gd   { background: rgba(192,67,110,0.15); color: #f0d0de;              border: 1px solid rgba(192,67,110,0.25); }
.svc-con  { background: rgba(99,130,190,0.14); color: #a8bfe8;              border: 1px solid rgba(99,130,190,0.25); }
.svc-seo  { background: rgba(52,168,120,0.13); color: #7dd4b0;              border: 1px solid rgba(52,168,120,0.25); }
.svc-em   { background: rgba(230,160,50,0.14); color: #f5cc7a;              border: 1px solid rgba(230,160,50,0.25); }
.svc-an   { background: rgba(100,80,200,0.15); color: #b8aaee;              border: 1px solid rgba(100,80,200,0.25); }
.svc-med  { background: rgba(160,80,200,0.14); color: #d0a8ee;              border: 1px solid rgba(160,80,200,0.25); }
.svc-prod { background: rgba(200,110,50,0.14); color: #f0b888;              border: 1px solid rgba(200,110,50,0.25); }

/* ===== WIN CARDS ===== */
.win-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.win-card { background: var(--charcoal); padding: 28px; display: flex; flex-direction: column; gap: 12px; transition: background 0.2s; }
.win-card:hover { background: #222; }
.win-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.win-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rose); }
.win-icon { font-size: 16px; color: rgba(255,255,255,0.15); flex-shrink: 0; }
.win-title { font-size: 16px; font-weight: 700; color: #fff; line-height: 1.3; margin: 0; }
.win-desc { font-family: 'Cardo', serif; font-style: italic; font-size: 14px; color: rgba(255,255,255,0.52); line-height: 1.65; margin: 0; flex-grow: 1; }
.win-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 4px; }
.win-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.05em; padding: 3px 9px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.65); }
.win-badge-green { background: rgba(52,168,120,0.15); border-color: rgba(52,168,120,0.3); color: #7dd4b0; }
.win-badge-rose { background: rgba(192,67,110,0.15); border-color: rgba(192,67,110,0.3); color: var(--rose-light); }

/* ===== FOOTER ===== */
.footer { background: #111; padding: 56px 0 36px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 32px; }
.footer-logo { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-logo span { color: var(--rose); }
.footer-tagline { font-family: 'Cardo', serif; font-style: italic; font-size: 15px; color: rgba(255,255,255,0.32); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-hero-inner { grid-template-columns: 1fr; }
    .headshot, .headshot-placeholder { margin: 0 auto; }
    .skill-pillars { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .client-grid { grid-template-columns: repeat(3, 1fr); }
    .hover-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hover-cards-grid-home { grid-template-columns: repeat(2, 1fr); }
    .win-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-menu { position: fixed; top: 64px; left: 0; width: 100%; background: #fff; flex-direction: column; align-items: center; padding: 20px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-110%); transition: transform 0.3s ease; z-index: 999; border-bottom: 1px solid var(--border); }
    .nav-menu.active { transform: translateY(0); }
    .social-nav { display: none; }
    .menu-toggle { display: block; }
    .hero-stat { min-width: 42%; }
    .hero-buttons { justify-content: center; }
    .job-grid { grid-template-columns: 1fr; }
    .skill-pillars { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-band { grid-template-columns: repeat(2, 1fr); }
    .proof-grid { grid-template-columns: 1fr; }
    .hover-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .hover-cards-grid-home { grid-template-columns: repeat(2, 1fr); }
    .portfolio-grid-home { grid-template-columns: 1fr; }
    .featured-project { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-white, .section-surface, .section-pale { padding: 64px 0; }
    .client-grid { grid-template-columns: repeat(2, 1fr); }
    .win-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .hover-cards-grid { grid-template-columns: 1fr; }
    .hover-cards-grid-home { grid-template-columns: 1fr; }
    .hc { height: 280px; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
    .hero-stat-number { font-size: 38px; }
    .hero-stats { gap: 24px; }
    .hero-stat { flex: 1 1 40%; border-right: none; padding-right: 0; margin-right: 0; }
    .client-grid { grid-template-columns: 1fr; }
}
