/* templatein19 build 2026-09-04 (pk19) */

:root {
    --pk19-gold: #d9a621;
    --pk19-gold-deep: #b8860b;
    --pk19-amber: #c8860d;
    --pk19-ink: #26221a;
    --pk19-body: #4a4438;
    --pk19-canvas: #f1efe9;
    --pk19-tint: #faf3e0;
    --pk19-line: #e5e0d4;
    --pk19-green: #2c5f2e;
    --pk19-red: #7d2222;
    --pk19-white: #ffffff;
    --pk19-radius-chip: 10px;
    --pk19-radius-btn: 4px;
    --pk19-wrap: 1200px;
    --pk19-content: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.pk19 {
    font-family: 'Karla', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--pk19-body);
    background: var(--pk19-canvas);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.pk19-wrap {
    max-width: var(--pk19-wrap);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
.pk19-header {
    background: var(--pk19-gold);
    border-bottom: 3px solid var(--pk19-gold-deep);
    position: sticky;
    top: 0;
    z-index: 50;
}

.pk19-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 68px;
}

.pk19-logo { flex-shrink: 0; display: inline-flex; }

.pk19-logo__img {
    display: block;
    height: 40px;
    width: auto;
}

.pk19-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.pk19-nav__link {
    display: inline-block;
    padding: 8px 14px;
    border-radius: var(--pk19-radius-btn);
    color: var(--pk19-ink);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.pk19-nav__link:hover,
.pk19-nav__link:focus-visible {
    background: var(--pk19-ink);
    color: var(--pk19-gold);
}

.pk19-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: var(--pk19-ink);
    border: none;
    border-radius: var(--pk19-radius-btn);
    cursor: pointer;
}

.pk19-burger__bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--pk19-gold);
    border-radius: 2px;
}

/* ===== Bands ===== */
.pk19-band { padding: 56px 0; }

.pk19-band--hero { background: var(--pk19-white); }
.pk19-band--cta { background: var(--pk19-tint); border-top: 1px solid var(--pk19-line); border-bottom: 1px solid var(--pk19-line); }
.pk19-band--lead { background: var(--pk19-tint); }
.pk19-band--specs { background: var(--pk19-canvas); }
.pk19-band--content { background: var(--pk19-white); }

/* ===== Hero (home) ===== */
.pk19-hero { text-align: center; }

.pk19-hero__title {
    display: inline-block;
    background: var(--pk19-gold);
    color: var(--pk19-ink);
    font-size: clamp(22px, 3.4vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    padding: 10px 26px;
    border-radius: var(--pk19-radius-chip);
    margin-bottom: 32px;
}

.pk19-hero__banner {
    border: 1px solid var(--pk19-line);
    border-radius: var(--pk19-radius-chip);
    overflow: hidden;
    background: var(--pk19-tint);
}

.pk19-hero__img {
    display: block;
    width: 100%;
    height: auto;
}

.pk19-hero__desc {
    max-width: var(--pk19-content);
    margin: 28px auto 0;
    font-size: 17px;
}

/* ===== CTA band ===== */
.pk19-cta { text-align: center; }

/* ===== H2 chip gene ===== */
.pk19-h2 {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 32px;
    background: var(--pk19-gold);
    color: var(--pk19-ink);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
    padding: 8px 22px;
    border-radius: var(--pk19-radius-chip);
    text-align: center;
}

/* ===== Button gene ===== */
.pk19-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pk19-amber);
    color: var(--pk19-white);
    font-size: 17px;
    font-weight: 700;
    padding: 13px 34px;
    border-radius: var(--pk19-radius-btn);
    text-decoration: none;
    box-shadow: 0 3px 0 var(--pk19-gold-deep);
    transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.1s ease;
}

.pk19-btn:hover,
.pk19-btn:focus-visible {
    background: var(--pk19-gold-deep);
    color: var(--pk19-white);
}

.pk19-btn:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 var(--pk19-gold-deep);
}

.pk19-btn__icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Lead band (page-special) ===== */
.pk19-lead { text-align: center; }

.pk19-lead__title {
    display: inline-block;
    background: var(--pk19-gold);
    color: var(--pk19-ink);
    font-size: clamp(22px, 3.4vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    padding: 10px 26px;
    border-radius: var(--pk19-radius-chip);
    margin-bottom: 28px;
}

/* ===== Specs table ===== */
.pk19-band--specs .pk19-h2 {
    background: var(--pk19-ink);
    color: var(--pk19-gold);
}

.pk19-table {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    background: var(--pk19-white);
    border: 1px solid var(--pk19-line);
    border-radius: var(--pk19-radius-chip);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    text-align: left;
}

.pk19-table th,
.pk19-table td {
    padding: 13px 20px;
    border-bottom: 1px solid var(--pk19-line);
}

.pk19-table tr:last-child th,
.pk19-table tr:last-child td { border-bottom: none; }

.pk19-table th {
    width: 34%;
    background: var(--pk19-tint);
    color: var(--pk19-ink);
    font-weight: 700;
    white-space: nowrap;
}

.pk19-table td { font-weight: 500; }

/* ===== Content ===== */
.pk19-content__inner {
    max-width: var(--pk19-content);
    margin: 0 auto;
    font-size: 16.5px;
}

.pk19-content__inner > * + * { margin-top: 18px; }

.pk19-content__inner h2 {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin: 40px auto 22px;
    background: var(--pk19-gold);
    color: var(--pk19-ink);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
    padding: 8px 22px;
    border-radius: var(--pk19-radius-chip);
    text-align: center;
}

.pk19-content__inner h3 {
    position: relative;
    margin: 34px 0 16px;
    padding: 4px 0 8px 14px;
    color: var(--pk19-ink);
    font-size: 18.5px;
    font-weight: 700;
    border-bottom: 2px solid var(--pk19-gold);
}

.pk19-content__inner h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 8px;
    width: 4px;
    background: var(--pk19-ink);
    border-radius: 2px;
}

.pk19-content__inner p { margin-top: 16px; }

.pk19-content__inner ul,
.pk19-content__inner ol {
    margin: 16px 0 16px 28px;
}

.pk19-content__inner ul { list-style: disc; }
.pk19-content__inner ol { list-style: decimal; }

.pk19-content__inner li { margin-top: 6px; }

.pk19-content__inner a {
    color: var(--pk19-amber);
    font-weight: 500;
    text-decoration: underline;
}

.pk19-content__inner a:hover { color: var(--pk19-gold-deep); }

.pk19-content__inner strong { color: var(--pk19-ink); font-weight: 700; }

.pk19-content__inner table {
    width: 100%;
    margin: 20px 0;
    border: 1px solid var(--pk19-line);
    border-collapse: collapse;
    background: var(--pk19-white);
}

.pk19-content__inner th,
.pk19-content__inner td {
    padding: 10px 14px;
    border: 1px solid var(--pk19-line);
    text-align: left;
}

.pk19-content__inner th {
    background: var(--pk19-tint);
    color: var(--pk19-ink);
}

.pk19-content__inner blockquote {
    margin: 20px 0;
    padding: 14px 20px;
    background: var(--pk19-tint);
    border-left: 4px solid var(--pk19-gold);
    border-radius: 0 var(--pk19-radius-chip) var(--pk19-radius-chip) 0;
}

.pk19-content__img {
    display: block;
    margin: 24px auto;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--pk19-line);
    border-radius: var(--pk19-radius-chip);
}

/* Pros / Cons heading genes (classes applied by main.js) */
.pk19-content__inner h3.pk19-h3--pro {
    background: var(--pk19-green);
    color: var(--pk19-white);
    padding: 8px 18px;
    border-radius: var(--pk19-radius-btn);
    border-bottom: none;
}

.pk19-content__inner h3.pk19-h3--pro::before { display: none; }

.pk19-content__inner h3.pk19-h3--con {
    background: var(--pk19-red);
    color: var(--pk19-white);
    padding: 8px 18px;
    border-radius: var(--pk19-radius-btn);
    border-bottom: none;
}

.pk19-content__inner h3.pk19-h3--con::before { display: none; }

/* ===== Footer ===== */
.pk19-footer {
    background: var(--pk19-ink);
    padding: 40px 0 32px;
    margin-top: 0;
}

.pk19-footer__inner { text-align: center; }

.pk19-footer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
    list-style: none;
    margin-bottom: 22px;
}

.pk19-footer__link {
    color: #d8d2c2;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s ease;
}

.pk19-footer__link:hover,
.pk19-footer__link:focus-visible { color: var(--pk19-gold); }

.pk19-footer__copy {
    color: #9a927e;
    font-size: 14px;
    border-top: 1px solid #3d372b;
    padding-top: 20px;
}

/* ===== Back to top ===== */
.pk19-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pk19-amber);
    color: var(--pk19-white);
    border: none;
    border-radius: var(--pk19-radius-btn);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s, background 0.15s ease;
    z-index: 60;
}

.pk19-top.is-on {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pk19-top:hover { background: var(--pk19-gold-deep); }

.pk19-top__icon { width: 18px; height: 18px; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
    .pk19-burger { display: flex; }

    .pk19-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--pk19-gold-deep);
        border-bottom: 3px solid var(--pk19-ink);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
    }

    .pk19-nav.is-open { max-height: 420px; }

    .pk19-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 16px 14px;
    }

    .pk19-nav__link {
        display: block;
        padding: 12px 14px;
        border-radius: var(--pk19-radius-btn);
        color: var(--pk19-white);
    }

    .pk19-nav__link:hover,
    .pk19-nav__link:focus-visible {
        background: var(--pk19-ink);
        color: var(--pk19-gold);
    }

    .pk19-band { padding: 40px 0; }

    .pk19-table th,
    .pk19-table td { padding: 11px 14px; }

    .pk19-table th { width: 40%; }

    .pk19-top { right: 16px; bottom: 16px; }
}
