/* ══════════════════════════════════════════════════════════
   YIUKEE Theme — Main Stylesheet
   Design Tokens from .pen: Heritage Warmth + Monumental Editorial
   ══════════════════════════════════════════════════════════ */

:root {
    /* Colors */
    --bg-primary: #F5F2E9;
    --bg-dark: #1A1714;
    --bg-accent: #ED1C24;
    --bg-white: #FFFFFF;

    --text-primary: #2D2926;
    --text-secondary: #5E5954;
    --text-inverse: #F5F2E9;
    --text-accent: #ED1C24;
    --text-muted: rgba(245, 242, 233, 0.6);

    --border-light: #D6D1C4;
    --border-dark: rgba(94, 89, 84, 0.2);

    /* Typography */
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-caption: 'IBM Plex Mono', monospace;

    /* Spacing */
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 32px;
    --sp-xl: 64px;
    --sp-xxl: 100px;

    /* Layout */
    --container-max: 1280px;
    --container-px: 80px;

    /* Header */
    --header-h: 80px;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.05; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-px);
}

.section { padding-block: var(--sp-xxl); }
.section--dark { background-color: var(--bg-dark); }

/* ── Section Header ──────────────────────────────────────── */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}
.section__label {
    display: inline-block;
    font-family: var(--font-caption);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-md);
}
.section__label--accent { color: var(--text-accent); }
.section__title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--text-primary);
    margin-bottom: var(--sp-md);
}
.section--dark .section__title { color: var(--text-inverse); }
.section__desc {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin-inline: auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn--sm { padding: 12px 28px; font-size: 14px; }
.btn--primary {
    background: var(--bg-accent);
    color: var(--text-inverse);
    border-color: var(--bg-accent);
}
.btn--primary:hover {
    background: #D41920;
    border-color: #D41920;
}
.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}
.btn--outline:hover {
    background: var(--text-primary);
    color: var(--text-inverse);
}
.btn--outline-light {
    background: transparent;
    color: var(--text-inverse);
    border-color: rgba(245, 242, 233, 0.4);
}
.btn--outline-light:hover {
    background: rgba(245, 242, 233, 0.15);
    border-color: rgba(245, 242, 233, 0.7);
}

/* ══════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    transition: box-shadow 0.3s;
}
.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.nav__brand a,
.nav__logo-text {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--text-inverse);
    background: var(--bg-accent);
    padding: 8px 16px;
    border-radius: 6px;
}
.nav__brand .custom-logo-link { display: flex; }
.nav__brand .custom-logo { height: 40px; width: auto; }

.nav__list {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav__link {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    transition: color 0.2s;
}
.nav__link:hover,
.nav__item.current-menu-item .nav__link {
    color: var(--text-accent);
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-accent);
    transition: width 0.3s;
}
.nav__link:hover::after,
.nav__item.current-menu-item .nav__link::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__account,
.nav__cart {
    position: relative;
    color: var(--text-primary);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}
.nav__account:hover,
.nav__cart:hover { color: var(--text-accent); }
.nav__cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--bg-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: flex-end;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    margin-top: var(--header-h);
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,23,20,0.4), rgba(26,23,20,0.8));
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    padding-top: 120px;
}
.hero__label {
    display: inline-block;
    font-family: var(--font-caption);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-inverse);
    background: var(--bg-accent);
    padding: 6px 16px;
    margin-bottom: 24px;
}
.hero__heading {
    font-size: clamp(48px, 7vw, 96px);
    color: var(--text-inverse);
    line-height: 0.95;
    margin-bottom: 8px;
}
.hero__desc {
    font-size: 18px;
    color: rgba(245, 242, 233, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin-top: 16px;
    margin-bottom: 32px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CATEGORIES
   ══════════════════════════════════════════════════════════ */
.categories { background: var(--bg-primary); }
.categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.category-card__image {
    height: 320px;
    overflow: hidden;
}
.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.category-card:hover .category-card__image img {
    transform: scale(1.05);
}
.category-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--border-light);
}
.category-card__body { padding: 32px; }
.category-card__title {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.category-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}
.category-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-accent);
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ══════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════ */
.why-us__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.why-us__left { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.why-us__heading {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--text-inverse);
    line-height: 1.05;
}
.why-us__desc {
    font-size: 16px;
    color: rgba(245, 242, 233, 0.67);
    line-height: 1.7;
}
.why-us__right { display: flex; flex-direction: column; }

.feature { padding: 32px 0; }
.feature--bordered { border-bottom: 1px solid var(--border-dark); }
.feature__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-accent);
    margin-bottom: 12px;
}
.feature__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 12px;
}
.feature__desc {
    font-size: 14px;
    color: rgba(245, 242, 233, 0.6);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════ */
.stats {
    background: var(--bg-accent);
    padding-block: 60px;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: var(--sp-lg);
}
.stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text-inverse);
    margin-bottom: 8px;
}
.stat__label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ══════════════════════════════════════════════════════════
   FEATURED PRODUCTS (WooCommerce)
   ══════════════════════════════════════════════════════════ */
.featured-products { background: var(--bg-white); }
.section__action {
    text-align: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════
   CTA
   ══════════════════════════════════════════════════════════ */
.cta { background: var(--bg-primary); }
.cta__inner { text-align: center; }
.cta__heading {
    font-size: clamp(36px, 5vw, 64px);
    color: var(--text-primary);
    line-height: 1.05;
    margin-bottom: 20px;
}
.cta__desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════
   PAGE HEADER
   ══════════════════════════════════════════════════════════ */
.page-header {
    background: var(--bg-dark);
    padding: 120px 0 60px;
    margin-top: var(--header-h);
}
.page-header__title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-inverse);
}
.page-header__desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
}
.page-header__date {
    display: block;
    font-family: var(--font-caption);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════
   POSTS / BLOG
   ══════════════════════════════════════════════════════════ */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-block: 60px;
}
.post-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.post-card__image { display: block; overflow: hidden; height: 220px; }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__date {
    font-family: var(--font-caption);
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}
.post-card__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}
.post-card__title a:hover { color: var(--text-accent); }
.post-card__excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Single content */
.single-content { padding-block: 60px; max-width: 800px; margin-inline: auto; }
.single-content__featured { margin-bottom: 40px; overflow: hidden; }
.single-content__featured img { width: 100%; }
.single-content__body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}
.single-content__body h2,
.single-content__body h3 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}
.single-content__body p { margin-bottom: 20px; }
.single-content__body img { margin-block: 24px; }

/* Page content */
.page-content {
    padding-block: 60px;
    max-width: 900px;
    margin-inline: auto;
    font-size: 17px;
    line-height: 1.8;
}
.page-content h2, .page-content h3 {
    font-family: var(--font-body);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
}
.page-content p { margin-bottom: 20px; }

/* Post nav */
.post-navigation {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
}
.post-navigation a { color: var(--text-accent); font-weight: 500; }

/* Pagination */
.yiukee-pagination,
.woocommerce-pagination {
    padding-block: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all 0.2s;
}
.page-numbers:hover,
.page-numbers.current {
    background: var(--bg-accent);
    color: var(--text-inverse);
    border-color: var(--bg-accent);
}

/* ══════════════════════════════════════════════════════════
   404
   ══════════════════════════════════════════════════════════ */
.error-404 {
    padding: 180px 0 120px;
    text-align: center;
    margin-top: var(--header-h);
}
.error-404__code {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--bg-accent);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}
.error-404__title {
    font-size: 36px;
    margin-bottom: 16px;
}
.error-404__desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--bg-dark);
    padding: 60px 0 40px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 48px;
}
.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-inverse);
    margin-bottom: 8px;
}
.footer__logo-sub {
    font-family: var(--font-caption);
    font-size: 11px;
    color: rgba(245, 242, 233, 0.47);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer__desc {
    font-size: 13px;
    color: rgba(245, 242, 233, 0.53);
    line-height: 1.7;
}
.footer__heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links li,
.footer__links a {
    font-size: 13px;
    color: rgba(245, 242, 233, 0.53);
    transition: color 0.2s;
}
.footer__links a:hover { color: var(--text-inverse); }

.footer__divider {
    height: 1px;
    background: var(--border-dark);
    margin-bottom: 24px;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 12px;
    color: rgba(245, 242, 233, 0.4);
}
.footer__bottom a {
    color: rgba(245, 242, 233, 0.4);
    transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--text-inverse); }

.footer__col--badges { display: flex; flex-direction: column; gap: 20px; }
.footer__badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__badge img {
    max-width: 160px;
    height: auto;
    border-radius: 4px;
}
.footer__badge span {
    font-family: var(--font-caption);
    font-size: 12px;
    color: rgba(245, 242, 233, 0.53);
}
.footer__sep { margin-inline: 8px; }

/* ══════════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ══════════════════════════════════════════════════════════ */
.wc-container { padding-block: 60px; }

/* Product Grid */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.woocommerce ul.products li.product a img {
    margin: 0 !important;
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 16px 20px 4px !important;
}
.woocommerce ul.products li.product .price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-accent);
    padding: 0 20px 16px;
}
.woocommerce ul.products li.product .price del {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 14px;
}

/* Add to cart button */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: var(--bg-accent) !important;
    color: var(--text-inverse) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 24px !important;
    transition: background 0.2s !important;
    text-transform: none !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background: #D41920 !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: var(--bg-accent) !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #D41920 !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background: var(--bg-accent);
    color: var(--text-inverse);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
    padding: 6px 14px;
    min-width: auto;
    min-height: auto;
    line-height: 1.4;
}

/* Single Product */
.woocommerce div.product div.summary {
    font-family: var(--font-body);
}
.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-primary);
}
.woocommerce div.product p.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-accent);
}
.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Quantity */
.woocommerce .quantity .qty {
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    padding: 10px;
    width: 60px;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 40px 0 0 !important;
    border-bottom: 1px solid var(--border-light);
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none !important;
    background: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 24px;
    color: var(--text-secondary);
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--text-accent);
    border-bottom: 2px solid var(--bg-accent);
}

/* Cart */
.woocommerce table.shop_table {
    border: 1px solid var(--border-light) !important;
    border-radius: 0 !important;
}
.woocommerce table.shop_table th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--bg-accent) !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--bg-accent) !important;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    font-family: var(--font-caption);
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.woocommerce .woocommerce-breadcrumb a { color: var(--text-accent); }

/* Star ratings */
.woocommerce .star-rating span::before { color: var(--bg-accent); }

/* ══════════════════════════════════════════════════════════
   NO-RESULTS
   ══════════════════════════════════════════════════════════ */
.no-results {
    text-align: center;
    padding: 60px 0;
    grid-column: 1 / -1;
}
.no-results p { color: var(--text-secondary); margin-bottom: 20px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --container-px: 40px;
        --header-h: 70px;
    }

    .categories__grid { grid-template-columns: repeat(2, 1fr); }
    .why-us__grid { grid-template-columns: 1fr; gap: 48px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .posts-grid { grid-template-columns: repeat(2, 1fr); }

    .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    :root {
        --container-px: 20px;
        --header-h: 60px;
        --sp-xxl: 60px;
    }

    /* Mobile nav — order: Logo ... Cart | Hamburger */
    .nav { flex-wrap: wrap; }
    .nav__brand { order: 1; }
    .nav__brand .custom-logo-link { display: flex; align-items: center; }
    .nav__brand .custom-logo { height: 36px; width: auto; }
    .nav__actions { order: 2; margin-left: auto; }
    .nav__cart { display: flex; align-items: center; padding-top: 4px; }
    .nav__toggle { order: 3; display: flex; margin-left: 16px; }
    .nav__menu { order: 4; }

    .nav__actions .btn { display: none; }

    .nav__menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 24px var(--container-px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        transition: transform 0.35s ease, visibility 0s 0.35s;
        z-index: 999;
        visibility: hidden;
        pointer-events: none;
    }
    .nav__menu.active {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.35s ease, visibility 0s 0s;
    }
    .nav__list { flex-direction: column; gap: 0; }
    .nav__item { width: 100%; }
    .nav__link {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .nav__link::after { display: none; }

    /* Hero */
    .hero { min-height: 520px; }
    .hero__content { padding-bottom: 48px; }
    .hero__desc { font-size: 15px; }

    /* Grids */
    .categories__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .posts-grid { grid-template-columns: 1fr; }

    .woocommerce ul.products { grid-template-columns: 1fr !important; }

    /* CTA */
    .cta__actions { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding-block: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info__item h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.contact-info__item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}
.contact-info__item a { color: var(--text-accent); }
.contact-info__item a:hover { text-decoration: underline; }

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: border-color 0.2s;
    border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--bg-accent);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input[type="submit"] {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    background: var(--bg-accent);
    color: var(--text-inverse);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    transition: background 0.2s;
}
.contact-form input[type="submit"]:hover { background: #D41920; }

.contact-section { padding-bottom: 0; }

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Map */
.contact-map {
    overflow: hidden;
    background: var(--border-light);
}
.contact-map iframe { display: block; }

/* Directions */
.contact-directions {
    background: var(--bg-white);
    padding: 32px;
}
.contact-directions__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-directions__steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-directions__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-directions__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--bg-accent);
    color: var(--text-inverse);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.contact-directions__step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.contact-directions__step strong {
    color: var(--text-primary);
}

.contact-info__item small {
    color: var(--text-secondary);
    font-size: 13px;
    opacity: 0.8;
}

/* Contact form section */
.contact-form-section .contact-form { padding-bottom: 20px; }

/* ══════════════════════════════════════════════════════════
   LEGAL / TERMS PAGE
   ══════════════════════════════════════════════════════════ */
.legal-content {
    max-width: 800px;
    margin-inline: auto;
    padding-block: 60px;
}
.legal-section {
    margin-bottom: 40px;
}
.legal-section h2 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.legal-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}
.legal-section ul {
    margin: 12px 0 12px 20px;
    list-style: disc;
}
.legal-section li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 6px;
}
.legal-section a { color: var(--text-accent); }
.legal-section a:hover { text-decoration: underline; }
.legal-section strong { color: var(--text-primary); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-grid__text .section__title { margin-bottom: 24px; }
.about-grid__text p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-grid__image { overflow: hidden; }
.about-grid__image img { width: 100%; height: auto; }

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-grid__image { order: -1; }
}

/* ══════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding-top: 20px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-dark);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding-bottom: 48px;
    position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__year {
    flex-shrink: 0;
    width: 64px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-accent);
    text-align: right;
    line-height: 1.2;
    padding-top: 2px;
}

.timeline__dot {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-accent);
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 2px var(--bg-accent);
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

.timeline__content { flex: 1; padding-top: 0; }
.timeline__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-inverse);
    margin-bottom: 8px;
}
.timeline__desc {
    font-size: 14px;
    color: rgba(245, 242, 233, 0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline::before { left: 8px; }
    .timeline__year {
        width: auto;
        font-size: 22px;
        min-width: 48px;
    }
    .timeline__item { gap: 16px; }
}

/* ══════════════════════════════════════════════════════════
   VALUES CARDS
   ══════════════════════════════════════════════════════════ */
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card {
    background: var(--bg-white);
    padding: 40px 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.value-card__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-accent);
    margin-bottom: 16px;
    line-height: 1;
}
.value-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.value-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .values__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════ */

/* Sticky service nav */
.service-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: var(--header-h);
    z-index: 100;
}
.service-nav__list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.service-nav__list::-webkit-scrollbar { display: none; }
.service-nav__link {
    display: block;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.service-nav__link:hover,
.service-nav__link.active {
    color: var(--text-accent);
    border-bottom-color: var(--bg-accent);
}

/* Section layout */
.section--alt { background: var(--bg-white); }

.service-section__header {
    margin-bottom: 48px;
}
.service-section__num {
    display: block;
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--bg-accent);
    line-height: 1;
    margin-bottom: 8px;
}
.service-section__title {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-primary);
    margin-bottom: 16px;
}
.service-section__intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 700px;
}

/* Service cards grid */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-cards--wide {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.section--alt .service-card {
    background: var(--bg-primary);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.service-card__image { height: 220px; overflow: hidden; }
.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card__placeholder {
    width: 100%;
    height: 100%;
    background: var(--border-light);
}
.service-card__body { padding: 24px; }
.service-card__body h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.service-card__body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Feature (side-by-side) layout for single items */
.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.service-feature__image {
    height: 350px;
    overflow: hidden;
}
.service-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-feature__body h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.service-feature__body p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}
.service-feature__call {
    margin-top: 20px !important;
    font-size: 15px !important;
}
.service-feature__phone {
    display: inline-block;
    margin-top: 6px;
    font-family: var(--font-caption);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-accent);
}
.service-feature__phone:hover {
    text-decoration: underline;
}
.service-feature__actions {
    margin-top: 24px;
}

/* Back to top link */
.service-section__top {
    margin-top: 48px;
    text-align: center;
}
.service-section__top a {
    font-family: var(--font-caption);
    font-size: 13px;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.service-section__top a:hover { color: var(--text-accent); }

@media (max-width: 1024px) {
    .service-cards { grid-template-columns: repeat(2, 1fr); }
    .service-cards--wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .service-cards,
    .service-cards--wide { grid-template-columns: 1fr; }
    .service-feature { grid-template-columns: 1fr; }
    .service-feature__image { height: 250px; }
    .service-nav__link { padding: 14px 16px; font-size: 13px; }
}

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.categories__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.categories__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-us__right .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-us__right .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-us__right .reveal:nth-child(4) { transition-delay: 0.3s; }
.stats__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.stats__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Print ────────────────────────────────────────────────── */
@media print {
    .site-header, .site-footer, .hero__actions, .cta, .stats { display: none; }
    body { background: #fff; color: #000; }
}
