/* =========================================================================
 * Werkplaats palette — site chrome (header + footer) + heritage homepage.
 * Companion to main.css. Loaded after main.css so selectors win.
 * ========================================================================= */

:root {
    --w-bg:     #faf8f3;
    --w-bg2:    #f0ebe1;
    --w-paper:  #ffffff;
    --w-ink:    #1a1614;
    --w-ink2:   #5a524c;
    --w-rule:   #dfd9cf;
    --w-red:    #d91f26;
    --w-cream:  #f4ede0;
    --w-serif:  "DM Serif Display", "Times New Roman", serif;
    --w-serif-text: "DM Serif Text", "Times New Roman", serif;
    --w-sans:   "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
    --w-script: "Caveat", "Brush Script MT", cursive;
}

/* ---------------------------------------------------------------------------
 * Skip link (accessibility, keyboard-only)
 * ------------------------------------------------------------------------- */
.acties-w-skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 999;
}
.acties-w-skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 8px 16px;
    background: var(--w-red);
    color: #fff;
    text-decoration: none;
    font-family: var(--w-sans);
}

/* ---------------------------------------------------------------------------
 * Top-bar (red strip)
 * ------------------------------------------------------------------------- */
.acties-w-header {
    background: var(--w-bg);
    border-bottom: 2px double var(--w-rule);
    font-family: var(--w-sans);
    color: var(--w-ink);
    position: relative;
    z-index: 60;
}
.acties-w-topbar {
    background: var(--w-red);
    color: var(--w-cream);
    font-family: var(--w-serif-text), serif;
    font-size: 12px;
    letter-spacing: 0.3px;
}
.acties-w-topbar__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 6px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.acties-w-topbar__phone {
    color: inherit;
    text-decoration: none;
}
.acties-w-topbar__phone:hover { text-decoration: underline; }

/* ---------------------------------------------------------------------------
 * Header bar (logo + nav + icons)
 * ------------------------------------------------------------------------- */
.acties-w-header__bar {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 36px;
}
.acties-w-header__brand {
    display: block;
    flex: 0 0 auto;
}
.acties-w-header__logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: none;
}
.acties-w-nav {
    margin-left: auto;
}
.acties-w-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 26px;
    font-family: var(--w-serif);
    font-size: 15px;
}
.acties-w-nav__link {
    color: var(--w-ink);
    text-decoration: none;
    transition: color .18s ease;
    font-weight: 400;
}
.acties-w-nav__link.is-italic {
    font-style: italic;
}
.acties-w-nav__link:hover,
.acties-w-nav__link:focus-visible {
    color: var(--w-red);
}
.acties-w-header__actions {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-left: 8px;
}
/* High specificity: beats body.acties-light-theme button rules in main.css. */
body.acties-w-body .acties-w-iconbtn,
body .acties-w-iconbtn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--w-rule);
    background: transparent;
    color: var(--w-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease, transform .18s ease;
    position: relative;
    font-family: inherit;
    font-weight: inherit;
}
body.acties-w-body .acties-w-iconbtn:hover,
body.acties-w-body .acties-w-iconbtn:focus-visible,
body .acties-w-iconbtn:hover,
body .acties-w-iconbtn:focus-visible {
    border-color: var(--w-red);
    color: var(--w-red);
    background: transparent;
    outline: none;
    transform: none;
}
.acties-w-iconbtn__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--w-red);
    color: #fff;
    font-size: 11px;
    font-family: var(--w-sans);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.acties-w-iconbtn--menu {
    display: none;
}

/* Search panel slide-down */
.acties-w-search {
    border-top: 1px solid var(--w-rule);
    background: var(--w-paper);
}
.acties-w-search__form {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.acties-w-search__label {
    flex: 0 0 auto;
    font-family: var(--w-serif-text);
    font-style: italic;
    font-size: 14px;
    color: var(--w-ink2);
}
.acties-w-search__input {
    flex: 1 1 auto;
    border: 1px solid var(--w-rule);
    background: transparent;
    padding: 10px 14px;
    font-family: var(--w-sans);
    font-size: 15px;
    color: var(--w-ink);
    border-radius: 2px;
    outline: none;
}
.acties-w-search__input:focus {
    border-color: var(--w-red);
}
body .acties-w-search__submit {
    background: var(--w-red);
    color: #fff;
    border: 0;
    padding: 11px 22px;
    font-family: var(--w-serif);
    font-style: italic;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 0.3px;
    font-weight: 400;
    transform: none;
}
body .acties-w-search__submit:hover { background: #b41a20; transform: none; }

/* ---------------------------------------------------------------------------
 * Homepage shell — break out of inherited .col-full constraints.
 * ------------------------------------------------------------------------- */
.acties-w-home {
    background: var(--w-bg);
    color: var(--w-ink);
    font-family: var(--w-sans);
    line-height: 1.4;
    /* break out of .col-full padding */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    overflow-x: clip;
}
.acties-w-home * { box-sizing: border-box; }

/* The site-content / col-full above the home main may have padding; cancel it. */
body.home #content.site-content {
    padding-top: 0;
    padding-bottom: 0;
}
body.home #content.site-content .col-full {
    padding: 0;
    max-width: none;
    width: 100%;
}

/* ---------------------------------------------------------------------------
 * Helpers — eyebrows, headings, ornaments.
 * ------------------------------------------------------------------------- */
.acties-w-eyebrow {
    font-family: var(--w-serif-text);
    font-size: 14px;
    color: var(--w-red);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
}
.acties-w-eyebrow--small {
    font-size: 13px;
    letter-spacing: 3px;
}
.acties-w-section-title {
    font-family: var(--w-serif);
    font-size: 64px;
    font-weight: 400;
    margin: 12px 0 0;
    color: var(--w-ink);
    letter-spacing: -1px;
    line-height: 1.05;
}
.acties-w-section-title em { font-style: italic; }
.acties-w-section-title--m {
    font-size: 48px;
    letter-spacing: -0.5px;
}
.acties-w-orn {
    color: var(--w-red);
    font-size: 14px;
}

/* ---------------------------------------------------------------------------
 * Buttons.
 * ------------------------------------------------------------------------- */
.acties-w-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    font-family: var(--w-serif);
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.3px;
    border: 0;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.acties-w-btn--primary {
    background: var(--w-red);
    color: #fff;
    padding: 16px 28px;
    border-radius: 2px;
}
.acties-w-btn--primary:hover {
    background: #b41a20;
    color: #fff;
}
.acties-w-btn--text {
    color: var(--w-ink);
    text-decoration: underline;
    text-underline-offset: 5px;
}
.acties-w-btn--text:hover { color: var(--w-red); }
.acties-w-btn--text-large {
    color: var(--w-ink);
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 6px;
    margin-top: 36px;
}
.acties-w-btn--text-large:hover { color: var(--w-red); }

/* ---------------------------------------------------------------------------
 * Hero.
 * ------------------------------------------------------------------------- */
.acties-w-hero {
    background: var(--w-bg);
    padding: 0 32px;
    position: relative;
}
.acties-w-hero__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 56px;
}
.acties-w-hero__copy { min-width: 0; }
.acties-w-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    border: 1px solid var(--w-rule);
    background: var(--w-paper);
    font-size: 12px;
    color: var(--w-red);
    font-family: var(--w-serif-text);
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}
.acties-w-hero__title {
    font-family: var(--w-serif);
    font-size: 96px;
    line-height: 0.98;
    letter-spacing: -2px;
    margin: 0;
    color: var(--w-ink);
    font-weight: 400;
}
.acties-w-hero__title em { font-style: italic; }
.acties-w-hero__title-red {
    color: var(--w-red);
    font-style: italic;
}
.acties-w-hero__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--w-ink2);
    margin: 28px 0 0;
    max-width: 520px;
    font-family: var(--w-sans);
}
.acties-w-hero__actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    align-items: center;
    flex-wrap: wrap;
}

/* Hero visual: polaroid stack + 1937 seal */
.acties-w-hero__visual {
    position: relative;
    height: 620px;
    min-width: 0;
}
.acties-w-polaroid {
    position: absolute;
    background: var(--w-paper);
    padding: 14px 14px 36px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
    border: 1px solid var(--w-rule);
    margin: 0;
    display: flex;
    flex-direction: column;
}
.acties-w-polaroid__photo {
    flex: 1 1 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: sepia(0.25) saturate(0.85);
}
.acties-w-polaroid figcaption {
    text-align: center;
    font-family: var(--w-script);
    font-size: 18px;
    color: var(--w-ink2);
    margin-top: 4px;
    line-height: 1;
}

.acties-w-polaroid--right {
    top: 20px;
    right: 60px;
    width: 360px;
    height: 460px;
    transform: rotate(3deg);
    z-index: 2;
}
.acties-w-polaroid--left {
    top: 80px;
    left: 40px;
    width: 300px;
    height: 380px;
    transform: rotate(-4deg);
    z-index: 1;
}

/* 1937 seal */
.acties-w-seal {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-8deg);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--w-red);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--w-serif);
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    border: 3px solid var(--w-bg);
    z-index: 3;
    pointer-events: none;
    user-select: none;
}
.acties-w-seal__small {
    font-size: 11px;
    letter-spacing: 2.5px;
    font-family: var(--w-serif-text);
    font-style: italic;
}
.acties-w-seal__year {
    font-size: 44px;
    line-height: 1;
    margin: 4px 0;
    font-weight: 400;
}
.acties-w-seal__sub {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-style: italic;
    text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
 * Categories grid.
 * ------------------------------------------------------------------------- */
.acties-w-cats {
    background: var(--w-bg);
    padding: 40px 32px 80px;
}
.acties-w-cats__head {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 1440px;
}
.acties-w-cats__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.acties-w-cat-card {
    display: block;
    text-decoration: none;
    color: var(--w-ink);
    background: var(--w-paper);
    padding: 6px;
    border: 1px solid var(--w-rule);
    transition: transform .25s ease, box-shadow .25s ease;
}
.acties-w-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    color: var(--w-ink);
}
.acties-w-cat-card__media {
    height: 200px;
    overflow: hidden;
    background: var(--w-bg2);
}
.acties-w-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.acties-w-cat-card__body {
    padding: 20px 16px 16px;
}
.acties-w-cat-card__title {
    font-family: var(--w-serif);
    font-size: 28px;
    color: var(--w-ink);
    line-height: 1;
    font-weight: 400;
    margin: 0;
}
.acties-w-cat-card__sub {
    font-size: 13px;
    color: var(--w-ink2);
    margin: 6px 0 0;
    font-family: var(--w-serif-text);
    font-style: italic;
}
.acties-w-cat-card__cta {
    font-size: 13px;
    color: var(--w-red);
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--w-serif-text);
}

/* ---------------------------------------------------------------------------
 * Featured products (double-line frame).
 * ------------------------------------------------------------------------- */
.acties-w-featured {
    background: var(--w-paper);
    border-top: 2px double var(--w-rule);
    border-bottom: 2px double var(--w-rule);
    padding: 80px 32px;
}
.acties-w-featured__head {
    max-width: 1440px;
    margin: 0 auto 40px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.acties-w-featured__head .acties-w-section-title { margin-top: 6px; }
.acties-w-featured__more {
    font-family: var(--w-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--w-red);
    text-decoration: none;
    flex: 0 0 auto;
}
.acties-w-featured__more:hover { color: #b41a20; text-decoration: underline; text-underline-offset: 5px; }
.acties-w-featured__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.acties-w-prod-card {
    display: block;
    text-decoration: none;
    color: var(--w-ink);
    position: relative;
}
.acties-w-prod-card:hover { color: var(--w-ink); }
.acties-w-prod-card__media {
    aspect-ratio: 1 / 1;
    background: var(--w-bg);
    border: 1px solid var(--w-rule);
    overflow: hidden;
    position: relative;
}
.acties-w-prod-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.acties-w-prod-card:hover .acties-w-prod-card__media img {
    transform: scale(1.03);
}
.acties-w-prod-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--w-red);
    color: var(--w-bg);
    padding: 4px 10px;
    font-size: 11px;
    font-family: var(--w-serif-text);
    letter-spacing: 0.5px;
}
.acties-w-prod-card__title {
    margin: 16px 0 0;
    font-family: var(--w-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--w-ink);
    line-height: 1.15;
}
.acties-w-prod-card__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 6px;
    gap: 12px;
}
.acties-w-prod-card__price {
    font-size: 18px;
    color: var(--w-ink);
    font-family: var(--w-serif);
}
.acties-w-prod-card__price .woocommerce-Price-amount,
.acties-w-prod-card__price .amount {
    color: inherit;
    font-family: inherit;
}
.acties-w-prod-card__meta {
    font-size: 12px;
    color: var(--w-ink2);
    font-family: var(--w-serif-text);
    font-style: italic;
}

/* ---------------------------------------------------------------------------
 * Story (image + sticker + timeline)
 * ------------------------------------------------------------------------- */
.acties-w-story {
    background: var(--w-bg);
    padding: 96px 32px;
    position: relative;
}
.acties-w-story__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.acties-w-story__media-wrap {
    position: relative;
}
.acties-w-story__media {
    aspect-ratio: 4 / 5;
    background-color: var(--w-bg2);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 14px;
    border: 1px solid var(--w-rule);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    filter: sepia(0.18) saturate(0.92);
}
.acties-w-story__sticker {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--w-paper);
    padding: 12px 18px;
    font-family: var(--w-script);
    font-size: 22px;
    color: var(--w-ink);
    transform: rotate(-4deg);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
    border: 1px solid var(--w-rule);
}
.acties-w-story__copy { min-width: 0; }
.acties-w-story__lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--w-ink2);
    margin: 24px 0 0;
    font-family: var(--w-sans);
}

/* Timeline */
.acties-w-timeline {
    margin-top: 40px;
    position: relative;
}
.acties-w-timeline__line {
    position: absolute;
    top: 13px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--w-rule);
}
.acties-w-timeline__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 16px;
}
.acties-w-timeline__item {
    display: flex;
    flex-direction: column;
}
.acties-w-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--w-paper);
    border: 2px solid var(--w-red);
    position: relative;
    z-index: 1;
    margin-left: 4px;
}
.acties-w-timeline__dot.is-active { background: var(--w-red); }
.acties-w-timeline__year {
    margin-top: 18px;
    font-family: var(--w-serif);
    font-size: 26px;
    color: var(--w-ink);
    font-weight: 400;
    line-height: 1.1;
}
.acties-w-timeline__label {
    font-size: 13px;
    color: var(--w-ink);
    font-weight: 500;
    margin-top: 2px;
}
.acties-w-timeline__sub {
    font-size: 12px;
    color: var(--w-ink2);
    font-style: italic;
    font-family: var(--w-serif-text);
}

/* ---------------------------------------------------------------------------
 * Practical (USP strip)
 * ------------------------------------------------------------------------- */
.acties-w-practical {
    background: var(--w-paper);
    border-top: 1px solid var(--w-rule);
    padding: 80px 32px;
}
.acties-w-practical__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.acties-w-practical__col {
    padding: 12px 24px;
    border-right: 1px solid var(--w-rule);
}
.acties-w-practical__col:last-child { border-right: 0; }
.acties-w-practical__icon {
    font-family: var(--w-serif);
    font-size: 28px;
    color: var(--w-red);
    line-height: 1;
}
.acties-w-practical__title {
    font-family: var(--w-serif);
    font-size: 22px;
    margin: 10px 0 0;
    color: var(--w-ink);
    font-weight: 400;
    line-height: 1.1;
}
.acties-w-practical__copy {
    font-size: 14px;
    color: var(--w-ink2);
    margin: 6px 0 0;
    line-height: 1.5;
    font-family: var(--w-sans);
}

/* ---------------------------------------------------------------------------
 * Brands strip.
 * ------------------------------------------------------------------------- */
.acties-w-brands {
    background: var(--w-bg);
    padding: 64px 32px;
    text-align: center;
    border-top: 2px double var(--w-rule);
    border-bottom: 2px double var(--w-rule);
}
.acties-w-brands .acties-w-eyebrow { margin-bottom: 12px; }
.acties-w-brands__list {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    font-family: var(--w-serif);
    font-size: 26px;
    color: var(--w-ink);
    font-style: italic;
    line-height: 1.4;
}
.acties-w-brands__sep {
    color: var(--w-red);
    font-size: 14px;
    font-style: normal;
}

/* ---------------------------------------------------------------------------
 * Footer (dark).
 * ------------------------------------------------------------------------- */
.acties-w-footer {
    background: var(--w-ink);
    color: rgba(244,237,224,0.7);
    padding: 64px 32px 32px;
    font-family: var(--w-serif-text);
    /* break out of .col-full */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
}
.acties-w-footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,0.25);
}
.acties-w-footer a:hover {
    color: #fff;
    text-decoration-color: rgba(255,255,255,0.6);
}
.acties-w-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
}
.acties-w-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.acties-w-footer__logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    display: block;
}
.acties-w-footer__about {
    margin: 16px 0 0;
    line-height: 1.6;
    font-size: 14px;
    font-family: var(--w-sans);
}
.acties-w-footer__heading {
    font-family: var(--w-serif);
    font-size: 18px;
    font-style: italic;
    color: #fff;
    margin: 0 0 12px;
    font-weight: 400;
}
.acties-w-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.acties-w-footer__list li {
    margin-bottom: 6px;
    font-size: 14px;
    font-family: var(--w-sans);
}
.acties-w-footer__credit {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.acties-w-footer__motto {
    font-style: italic;
}

/* Override generic footer credit / storefront residue if any creeps in. */
.site-footer.acties-w-footer { background: var(--w-ink); }
.acties-w-footer + .acties-footer-credit { display: none; }

/* ---------------------------------------------------------------------------
 * Responsive — tablet ≤ 960px.
 * ------------------------------------------------------------------------- */
@media (max-width: 960px) {
    .acties-w-topbar__inner { padding: 6px 24px; }
    .acties-w-topbar__tagline { display: none; }
    .acties-w-topbar__phone { width: 100%; text-align: center; }

    .acties-w-header__bar {
        padding: 16px 24px;
        gap: 16px;
    }
    .acties-w-header__logo { height: 40px; }
    .acties-w-nav { display: none; }
    .acties-w-nav.is-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--w-paper);
        border-top: 1px solid var(--w-rule);
        border-bottom: 2px double var(--w-rule);
        margin: 0;
        padding: 16px 0;
        z-index: 50;
    }
    .acties-w-nav.is-open .acties-w-nav__list {
        flex-direction: column;
        gap: 4px;
    }
    .acties-w-nav.is-open .acties-w-nav__link {
        display: block;
        padding: 10px 24px;
        font-size: 18px;
    }
    .acties-w-iconbtn--menu { display: inline-flex; }
    .acties-w-header__actions { margin-left: auto; }

    .acties-w-search__form { padding: 14px 24px; flex-wrap: wrap; }
    .acties-w-search__label { flex: 1 0 100%; }

    .acties-w-hero { padding: 0 24px; }
    .acties-w-hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 48px;
        padding-bottom: 64px;
    }
    .acties-w-hero__title { font-size: 72px; line-height: 1; }
    .acties-w-hero__lead { font-size: 16px; }
    .acties-w-hero__visual { height: 520px; }
    .acties-w-polaroid--right {
        right: 8%;
        width: 56%;
        max-width: 360px;
        height: 360px;
    }
    .acties-w-polaroid--left {
        left: 4%;
        width: 48%;
        max-width: 300px;
        height: 300px;
    }

    .acties-w-cats { padding: 64px 24px; }
    .acties-w-cats__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .acties-w-section-title { font-size: 48px; }
    .acties-w-section-title--m { font-size: 36px; }

    .acties-w-featured { padding: 64px 24px; }
    .acties-w-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    .acties-w-story { padding: 64px 24px; }
    .acties-w-story__inner { grid-template-columns: 1fr; gap: 48px; }
    .acties-w-story__media-wrap { max-width: 480px; }

    .acties-w-practical { padding: 56px 24px; }
    .acties-w-practical__grid { grid-template-columns: repeat(2, 1fr); }
    .acties-w-practical__col {
        padding: 18px 16px;
        border-right: 1px solid var(--w-rule);
        border-bottom: 1px solid var(--w-rule);
    }
    .acties-w-practical__col:nth-child(2n) { border-right: 0; }
    .acties-w-practical__col:nth-last-child(-n+2) { border-bottom: 0; }

    .acties-w-brands { padding: 48px 24px; }
    .acties-w-brands__list { gap: 18px; font-size: 22px; }

    .acties-w-footer { padding: 48px 24px 24px; }
    .acties-w-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ---------------------------------------------------------------------------
 * Responsive — mobile ≤ 640px.
 * ------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .acties-w-topbar__inner { padding: 6px 16px; font-size: 11px; }

    .acties-w-header__bar { padding: 12px 16px; gap: 12px; }
    .acties-w-header__logo { height: 36px; max-width: none; }
    .acties-w-iconbtn { width: 36px; height: 36px; }
    .acties-w-header__actions { gap: 8px; }

    .acties-w-search__form { padding: 12px 16px; gap: 8px; }
    .acties-w-search__submit { padding: 10px 16px; }

    .acties-w-hero { padding: 0 16px; }
    .acties-w-hero__inner {
        padding-top: 32px;
        padding-bottom: 48px;
        gap: 24px;
    }
    .acties-w-hero__tag {
        font-size: 11px;
        padding: 6px 12px;
        gap: 8px;
        margin-bottom: 24px;
    }
    .acties-w-hero__title { font-size: 56px; letter-spacing: -1px; }
    .acties-w-hero__lead { font-size: 15px; margin-top: 20px; }
    .acties-w-hero__actions { gap: 12px; margin-top: 28px; }
    .acties-w-btn--primary { padding: 14px 22px; font-size: 14px; }
    .acties-w-hero__visual { height: 420px; }
    .acties-w-polaroid--right {
        top: 12px;
        right: 6%;
        width: 64%;
        height: 280px;
    }
    .acties-w-polaroid--left {
        top: 56px;
        left: 4%;
        width: 56%;
        height: 240px;
    }
    .acties-w-seal {
        width: 130px;
        height: 130px;
        bottom: 16px;
    }
    .acties-w-seal__year { font-size: 36px; }

    .acties-w-cats { padding: 48px 16px; }
    .acties-w-cats__head { margin-bottom: 32px; }
    .acties-w-cats__grid { grid-template-columns: 1fr; gap: 16px; }
    .acties-w-cat-card__media { height: 180px; }
    .acties-w-section-title { font-size: 36px; line-height: 1.05; letter-spacing: -0.5px; }
    .acties-w-section-title--m { font-size: 30px; }

    .acties-w-featured { padding: 48px 16px; }
    .acties-w-featured__head { margin-bottom: 24px; gap: 12px; }
    .acties-w-featured__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .acties-w-prod-card__title { font-size: 18px; }
    .acties-w-prod-card__price { font-size: 16px; }

    .acties-w-story { padding: 48px 16px; }
    .acties-w-story__inner { gap: 40px; }
    .acties-w-story__media-wrap { max-width: 100%; }
    .acties-w-story__sticker { font-size: 18px; padding: 10px 14px; top: -10px; left: 8px; }

    .acties-w-practical { padding: 40px 16px; }
    .acties-w-practical__grid { grid-template-columns: 1fr; }
    .acties-w-practical__col {
        border-right: 0;
        border-bottom: 1px solid var(--w-rule);
        padding: 18px 4px;
    }
    .acties-w-practical__col:last-child { border-bottom: 0; }

    .acties-w-brands { padding: 40px 16px; }
    .acties-w-brands__list { gap: 12px; font-size: 18px; }

    .acties-w-footer { padding: 40px 16px 24px; }
    .acties-w-footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .acties-w-footer__credit { font-size: 11px; }
}
