/*
Theme Name: Galina Web
Theme URI: https://galinaweb.com
Author: Galina
Description: Минималистична тема за блог и порцеланова колекция.
Version: 1.0.0
License: GNU General Public License v2
Text Domain: galinaweb
*/

/* ── Custom Properties ─────────────────────────────────────── */
:root {
    --white:        #ffffff;
    --black:        #0d0d0d;
    --gray-100:     #f7f7f7;
    --gray-200:     #efefef;
    --gray-300:     #dedede;
    --gray-400:     #bcbcbc;
    --gray-500:     #888888;
    --gray-600:     #555555;
    --gray-700:     #333333;
    --accent:       #2c5f4a;
    --accent-light: #e8f0ec;
    --danger:       #c0392b;
    --success:      #27ae60;

    --font-head: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --max-w:    1160px;
    --read-w:   700px;
    --header-h: 64px;
    --ease:     0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.15;
    color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.container--narrow { max-width: var(--read-w); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 200;
    transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-branding { display: flex; flex-direction: column; gap: 1px; }
.site-title {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1;
}
.site-title a { color: inherit; }
.site-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 400;
}

/* Nav */
.main-navigation { display: flex; align-items: center; }
.main-navigation ul { display: flex; gap: 2rem; }
.main-navigation a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--ease);
    position: relative;
    padding-bottom: 2px;
}
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--black);
    transition: width var(--ease);
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--black); }
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after { width: 100%; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    padding: 4px;
    flex-shrink: 0;
    z-index: 201;
}
.nav-toggle span {
    display: block;
    height: 1.5px;
    background: var(--black);
    transition: var(--ease);
    transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 199;
    backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.7rem 1.75rem;
    border: 1px solid transparent;
    transition: var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-700); border-color: var(--gray-700); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--gray-300); }
.btn-outline-dark:hover { border-color: var(--black); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { opacity: 0.88; color: var(--white); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero-bg { position: absolute; inset: 0; background: var(--black); }
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.85;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    color: var(--white);
    padding: 4rem clamp(1.25rem, 5vw, 2.5rem);
    max-width: min(700px, 100%);
}
.hero-eyebrow {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.25rem;
    animation: fadeUp 0.7s 0.1s both;
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700; line-height: 1.02;
    color: var(--white); margin-bottom: 1.5rem;
    animation: fadeUp 0.7s 0.25s both;
}
.hero-title em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.65); }
.hero-desc {
    font-size: 1rem; line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 440px; margin-bottom: 2.5rem;
    animation: fadeUp 0.7s 0.4s both;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; animation: fadeUp 0.7s 0.55s both; }

/* ── Sections ────────────────────────────────────────────────── */
section, .section { padding: 5rem 0; }
.section-bg-warm { background: var(--gray-100); }
.section-eyebrow {
    display: inline-block;
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent); margin-bottom: 0.5rem; font-weight: 600;
}
.section-title { font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-rule { width: 28px; height: 2px; background: var(--black); margin: 0.9rem auto 0; }
.section-rule.left { margin-left: 0; }
.section-footer { margin-top: 3rem; text-align: center; }

/* ── Blog Cards ──────────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200);
}
.blog-card {
    background: var(--white); display: flex; flex-direction: column;
    transition: background var(--ease);
}
.blog-card:hover { background: var(--gray-100); }
.blog-card-img {
    overflow: hidden; aspect-ratio: 16/9; background: var(--gray-100); flex-shrink: 0;
    display: block;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16/9;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-date { font-size: 0.72rem; color: var(--gray-500); margin-bottom: 0.5rem; display: block; }
.card-title {
    font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
    line-height: 1.2; margin-bottom: 0.6rem; transition: color var(--ease);
}
.blog-card:hover .card-title { color: var(--accent); }
.card-excerpt { font-size: 0.87rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.card-read-more {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--black);
    display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--ease);
}
.card-read-more::after { content: '→'; }
.blog-card:hover .card-read-more { gap: 0.75rem; }

/* ── Collection Cards ────────────────────────────────────────── */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
    gap: 1px; background: var(--gray-200); border: 1px solid var(--gray-200);
}
.collection-card { background: var(--white); display: flex; flex-direction: column; transition: background var(--ease); }
.collection-card:hover { background: var(--gray-100); }
.collection-card-img {
    overflow: hidden; aspect-ratio: 3/4; background: var(--gray-100);
    display: block; flex-shrink: 0;
}
.collection-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.collection-card:hover .collection-card-img img { transform: scale(1.04); }
.collection-card-img-placeholder {
    width: 100%; height: 100%; aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
}
.collection-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.collection-card-name {
    font-family: var(--font-head); font-size: 1rem; font-weight: 600;
    line-height: 1.2; transition: color var(--ease);
}
.collection-card:hover .collection-card-name { color: var(--accent); }
.collection-card-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; flex: 1; }
.collection-card-status { font-size: 0.75rem; font-weight: 600; color: var(--gray-500); margin-top: 0.25rem; }

/* ── Page Hero ───────────────────────────────────────────────── */
.page-hero {
    padding: calc(var(--header-h) + 4rem) 0 3.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.page-hero-eyebrow {
    display: block; font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; font-weight: 600;
}
.page-hero-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.75rem; }
.page-hero-desc { color: var(--gray-500); font-size: 0.95rem; max-width: 480px; }

/* ── Single Post ─────────────────────────────────────────────── */
.single-post-wrap { padding-top: var(--header-h); }
.post-featured-img { width: 100%; aspect-ratio: 21/9; overflow: hidden; background: var(--gray-100); }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-header {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 3rem;
    max-width: var(--read-w);
}
.post-category { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 0.75rem; display: block; }
.post-title { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.1; margin-bottom: 0.75rem; }
.post-meta { font-size: 0.78rem; color: var(--gray-500); }

/* Entry content — WordPress rich text */
.entry-content { max-width: var(--read-w); padding-bottom: 5rem; }
.entry-content h2 { font-size: clamp(1.25rem, 2vw, 1.75rem); margin: 2.5rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--gray-200); }
.entry-content h3 { font-size: 1.2rem; margin: 2rem 0 0.5rem; }
.entry-content p { color: var(--gray-700); line-height: 1.85; }
.entry-content strong { font-weight: 600; color: var(--black); }
.entry-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.entry-content blockquote {
    border-left: 3px solid var(--accent);
    padding: 1rem 1.5rem; margin: 2rem 0;
    background: var(--accent-light);
    font-size: 1.05rem; color: var(--gray-600);
}
.entry-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1.25em; }
.entry-content ol { padding-left: 1.5rem; list-style: decimal; margin-bottom: 1.25em; }
.entry-content li { margin-bottom: 0.4em; color: var(--gray-700); }
.entry-content img { max-width: 100%; margin: 1.5rem 0; }

/* Post navigation */
.post-navigation {
    max-width: var(--read-w);
    padding: 3rem 0;
    display: flex; justify-content: space-between; gap: 1rem;
    border-top: 1px solid var(--gray-200); margin-top: 1rem;
}
.nav-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 0.4rem; display: block; }
.nav-previous { text-align: left; }
.nav-next { text-align: right; margin-left: auto; }
.nav-previous a, .nav-next a { font-size: 0.95rem; font-weight: 500; }
.nav-previous a:hover, .nav-next a:hover { color: var(--accent); }

/* ── Collection Single ───────────────────────────────────────── */
.collection-single { padding: calc(var(--header-h) + 3rem) 0 5rem; }
.collection-single-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.collection-img-sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.collection-main-img { aspect-ratio: 3/4; overflow: hidden; background: var(--gray-100); }
.collection-main-img img { width: 100%; height: 100%; object-fit: cover; }
.collection-breadcrumb { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.collection-breadcrumb a:hover { color: var(--black); }
.collection-breadcrumb span { margin: 0 0.4rem; opacity: 0.4; }
.collection-item-title { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.collection-inquiry-box {
    margin-top: 2rem; padding: 1.5rem;
    background: var(--gray-100); border-left: 3px solid var(--accent);
}
.collection-inquiry-box h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.collection-inquiry-box p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }

/* ── Contact Form (CF7 override) ─────────────────────────────── */
.contact-section { padding: calc(var(--header-h) + 4rem) 0 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info h1 { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.contact-info-text { color: var(--gray-600); font-size: 0.92rem; line-height: 1.85; margin-bottom: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--gray-600); padding: 0.6rem 0; border-bottom: 1px solid var(--gray-200); }
.contact-detail-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); min-width: 70px; font-weight: 700; padding-top: 2px; }

/* CF7 form styling */
.wpcf7-form p { margin-bottom: 1.25rem; }
.wpcf7-form label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--black); margin-bottom: 0.45rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%; font-family: var(--font-body); font-size: 0.92rem;
    color: var(--black); background: var(--white);
    border: 1px solid var(--gray-300); padding: 0.75rem 1rem;
    outline: none; transition: border-color var(--ease);
    -webkit-appearance: none; border-radius: 0;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus { border-color: var(--black); }
.wpcf7-form textarea { resize: vertical; min-height: 140px; }
.wpcf7-form input[type="submit"] {
    width: 100%; padding: 0.85rem;
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--black); color: var(--white);
    border: 1px solid var(--black); cursor: pointer; transition: var(--ease);
    border-radius: 0;
}
.wpcf7-form input[type="submit"]:hover { background: var(--accent); border-color: var(--accent); }
.wpcf7-not-valid-tip { color: var(--danger); font-size: 0.78rem; margin-top: 0.25rem; display: block; }
.wpcf7-response-output { padding: 0.9rem 1.1rem; margin-top: 1rem; font-size: 0.85rem; border-left: 3px solid var(--accent); background: var(--accent-light); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; margin-top: 3rem; }
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; font-size: 0.82rem; font-weight: 500;
    border: 1px solid var(--gray-200); transition: var(--ease);
}
a.page-numbers:hover { border-color: var(--black); }
.page-numbers.current { background: var(--black); border-color: var(--black); color: var(--white); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.45);
    padding: 4rem 0 2rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    align-items: start;
}
.footer-brand-name {
    display: block;
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.35rem;
}
.footer-brand-name:hover { color: var(--white); }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.22); line-height: 1.5; }

/* Footer nav column */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    transition: color var(--ease);
    padding: 0.1rem 0;
}
.footer-nav a:hover { color: var(--white); }

/* Footer contact column */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-end;
}
.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--ease);
    font-weight: 400;
}
.footer-contact-item:hover { color: var(--white); }
.footer-social-row {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 0.5rem;
}
.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.4);
    transition: var(--ease);
}
.footer-social-icon:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.75rem;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── Mobile Drawer ───────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 88vw);
    height: 100vh; height: 100dvh;
    background: var(--white);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.mobile-drawer-brand {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
}
.drawer-close {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    color: var(--gray-500); cursor: pointer;
    transition: color var(--ease);
    border: 1px solid var(--gray-200);
}
.drawer-close:hover { color: var(--black); border-color: var(--black); }

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.mobile-nav a,
.mobile-nav ul li a {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--black);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }

.mobile-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-100);
    flex-shrink: 0;
}
.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 1rem;
    transition: color var(--ease);
}
.mobile-contact-item:hover { color: var(--accent); }
.mobile-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.mobile-social-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--gray-300);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--ease);
    white-space: nowrap;
}
.mobile-social-icon:hover {
    border-color: var(--black);
    color: var(--black);
    background: var(--white);
}

/* ── Partners ────────────────────────────────────────────────── */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    align-items: center;
}
.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: var(--ease);
}
.partner-item:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo {
    max-height: 52px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
}
.partner-name-text {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-300);
}

/* ── Contact Social Links ────────────────────────────────────── */
.contact-social-links { display: flex; flex-direction: column; gap: 0.4rem; }
.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: color var(--ease);
}
.contact-social-link:last-child { border-bottom: none; }
.contact-social-link:hover { color: var(--accent); }

/* ── Intro quote ─────────────────────────────────────────────── */
.intro-quote { font-family: var(--font-head); font-size: clamp(1.15rem, 2.5vw, 1.6rem); font-weight: 300; font-style: italic; line-height: 1.55; color: var(--gray-600); text-align: center; max-width: 580px; margin: 0 auto; }
.intro-quote-attr { text-align: center; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray-400); margin-top: 0.75rem; }

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--gray-500); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.revealed { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ── Collection Filters ──────────────────────────────────────── */
.collection-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

/* Search */
.collection-search {
    display: flex;
    max-width: 420px;
    border: 1px solid var(--gray-300);
    transition: border-color var(--ease);
}
.collection-search:focus-within { border-color: var(--black); }
.collection-search-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--black);
    border: none;
    outline: none;
    padding: 0.7rem 1rem;
    background: var(--white);
}
.collection-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    transition: color var(--ease);
    border-left: 1px solid var(--gray-200);
}
.collection-search-btn:hover { color: var(--black); }

/* Category pills */
.collection-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.cat-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    transition: var(--ease);
    white-space: nowrap;
}
.cat-pill:hover { border-color: var(--black); color: var(--black); }
.cat-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }
.cat-pill-count {
    display: inline-block;
    font-size: 0.65rem;
    color: inherit;
    opacity: 0.6;
    margin-left: 0.25rem;
}
.collection-card-cat {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

/* ── No results ──────────────────────────────────────────────── */
.no-results { text-align: center; padding: 5rem 1rem; color: var(--gray-500); }
.no-results h2 { font-size: 1.5rem; color: var(--black); margin-bottom: 0.5rem; }

/* WordPress alignment classes */
.alignwide  { max-width: 100%; }
.alignfull  { width: 100%; }
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { margin: 0 auto 1.5rem; }
img.aligncenter { display: block; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════════════════════════════ */

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .main-navigation ul {
        position: fixed;
        top: 0; right: -100%;
        width: min(300px, 82vw);
        height: 100vh; height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.75rem;
        border-left: 1px solid var(--gray-200);
        transition: right var(--ease);
        z-index: 200;
    }
    .main-navigation.open ul { right: 0; }
    .main-navigation a { font-size: 1.05rem; }
}

@media (max-width: 640px) {
    :root { --header-h: 54px; }
    section, .section { padding: 3rem 0; }
    .hero-content { padding: 3rem 1.25rem; }
    .card-grid { grid-template-columns: 1fr; }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 2.5rem; }
    .post-featured-img { aspect-ratio: 4/3; }
    .post-header { padding: 2rem 0 1.5rem; }
    .collection-single { padding-top: calc(var(--header-h) + 1.5rem); }
    .collection-single-grid { grid-template-columns: 1fr; gap: 2rem; }
    .collection-img-sticky { position: static; }
    .collection-main-img { aspect-ratio: 4/3; }
    .contact-section { padding: calc(var(--header-h) + 2.5rem) 0 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-contact { align-items: flex-start; }
    .footer-social-row { justify-content: flex-start; }
    .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
    .partners-grid { gap: 1rem 1.5rem; }
}

@media (max-width: 400px) {
    .collection-grid { grid-template-columns: 1fr; }
    .btn { padding: 0.65rem 1.25rem; }
    .hero-cta { flex-direction: column; }
}
