/* Newspaper + Windows 95 hybrid */

:root {
    /* Newspaper */
    --paper: #f7f3eb;
    --paper-line: rgba(0, 0, 0, 0.06);
    --ink: #1a1a1a;
    --ink-muted: #4a4540;
    --ink-light: #7a746c;
    --accent: #8b1a1a;
    --accent-soft: #f5ecec;
    --rule: #1a1a1a;
    --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

    /* Win95 */
    --win-teal: #008080;
    --win-gray: #c0c0c0;
    --win-light: #dfdfdf;
    --win-dark: #808080;
    --win-white: #ffffff;
    --win-navy: #000080;
    --win-ui: Tahoma, 'MS Sans Serif', Arial, sans-serif;
    --win-shadow: 2px 2px 0 #000;

    --max-width: 900px;
    --taskbar-h: 28px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-serif);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--win-teal);
    padding-bottom: var(--taskbar-h);
}

/* Win95 Desktop */
.desktop {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Win95 Window */
.win {
    background: var(--win-gray);
    border: 2px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    box-shadow: var(--win-shadow);
}

.win-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 2px 3px;
    background: linear-gradient(90deg, var(--win-navy), #1084d0);
    color: #fff;
    font-family: var(--win-ui);
    font-size: 11px;
    font-weight: bold;
    user-select: none;
}

.win-bar--inactive {
    background: linear-gradient(90deg, #808080, #b0b0b0);
    color: #eee;
}

.win-bar-icon {
    font-size: 12px;
    line-height: 1;
}

.win-bar-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.win-bar-controls {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.win-bar-controls button {
    width: 16px;
    height: 14px;
    padding: 0;
    border: 1px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    background: var(--win-gray);
    color: #000;
    font-family: var(--win-ui);
    font-size: 9px;
    font-weight: bold;
    line-height: 12px;
    cursor: default;
}

.win-bar-controls button:active {
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.win-body {
    padding: 3px;
    background: var(--win-gray);
}

.inset-panel {
    background: var(--win-white);
    border: 2px solid;
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
    box-shadow: 1px 1px 0 var(--win-white) inset;
}

.group-box {
    border: 1px groove var(--win-dark) !important;
    background: var(--win-gray) !important;
    padding: 14px 10px 10px !important;
}

.group-box legend {
    font-family: var(--win-ui) !important;
    font-size: 11px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--ink) !important;
}

/* Newspaper inside windows */
.paper {
    padding: 24px 28px 28px;
    background: var(--paper);
    background-image:
        repeating-linear-gradient(
            transparent,
            transparent 31px,
            var(--paper-line) 31px,
            var(--paper-line) 32px
        );
}

/* Masthead */
.masthead {
    text-align: center;
    margin-bottom: 24px;
}

.masthead-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 10px;
}

.price-tag {
    border: 1px solid var(--ink);
    padding: 2px 8px;
}

.paper-name {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}

.paper-motto {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--ink-muted);
    margin: 6px 0 14px;
}

.masthead-rule {
    height: 1px;
    background: var(--rule);
    margin: 10px 0;
}

.masthead-rule--thick {
    height: 3px;
    margin-top: 12px;
}

.paper-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.paper-nav a {
    color: var(--ink);
    text-decoration: none;
    padding: 3px 8px;
    background: var(--win-gray);
    border: 2px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    font-family: var(--win-ui);
    font-size: 11px;
}

.paper-nav a:hover,
.paper-nav a:focus-visible {
    background: var(--win-light);
    outline: none;
}

.paper-nav a:active {
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.nav-dot {
    display: none;
}

.nav-cta {
    background: var(--win-navy) !important;
    color: #fff !important;
}

/* Front page */
.front-page {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    padding-bottom: 20px;
    border-bottom: 3px double var(--rule);
    margin-bottom: 24px;
}

.kicker {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 6px;
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 10px;
}

.headline em {
    font-style: italic;
    color: var(--accent);
}

.subhead {
    font-size: 15px;
    color: var(--ink-muted);
    margin: 0;
    line-height: 1.5;
}

.front-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 3px solid var(--rule);
    padding-left: 14px;
    min-width: 90px;
}

.stat-item {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-muted);
    text-transform: uppercase;
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink);
    line-height: 1;
}

/* Typography blocks */
.section-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 4px;
}

.article-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.article-lead {
    font-size: 15px;
    color: var(--ink-muted);
    font-style: italic;
    margin: 0 0 16px;
}

.columns-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.columns-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.col p {
    margin: 0 0 10px;
    text-align: justify;
}

.drop-cap::first-letter {
    float: left;
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 0.82;
    padding: 4px 10px 0 0;
    font-weight: 900;
    color: var(--accent);
}

.honesty-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.honesty-list li {
    padding: 8px 0 8px 18px;
    font-size: 14px;
    border-bottom: 1px solid var(--paper-line);
    position: relative;
}

.honesty-list li:last-child {
    border-bottom: none;
}

.honesty-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.article-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Win95 Buttons (used for nav + CTAs) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
    min-height: 23px;
    font-family: var(--win-ui);
    font-size: 11px;
    text-decoration: none;
    color: var(--ink);
    background: var(--win-gray);
    border: 2px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    cursor: default;
    box-shadow: 1px 1px 0 var(--win-white) inset;
}

.btn:hover,
.btn:focus-visible {
    background: var(--win-light);
    outline: 1px dotted #000;
    outline-offset: -4px;
}

.btn:active {
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
    box-shadow: none;
    padding: 5px 15px 3px 17px;
}

.btn-primary {
    font-weight: bold;
    background: linear-gradient(180deg, #fff 0%, #ecebe5 90%, #d8d5cb 100%);
}

.btn-outline {
    background: var(--win-gray);
}

/* Calculator */
.calc-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.calc-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 4px;
}

.calc-option {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px;
    padding: 6px 8px 6px 26px;
    background: var(--win-white);
    border: 1px solid var(--win-dark);
    cursor: pointer;
    position: relative;
    font-size: 13px;
    font-family: var(--win-ui);
}

.calc-option:hover {
    background: #ffffcc;
}

.calc-option:has(input:checked) {
    background: #000080;
    color: #fff;
    border-color: var(--win-navy);
}

.calc-option:has(input:checked) .option-price {
    color: #ccc;
}

.calc-option--check {
    flex-wrap: wrap;
    align-items: center;
    padding: 8px 10px 8px 36px;
}

.calc-option--check input {
    left: 10px;
}

.calc-option--check .option-label {
    margin-left: 4px;
}

.calc-option--check .option-price {
    padding-left: 4px;
}

.calc-option-qty-wrap {
    width: 100%;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px dashed rgba(128, 128, 128, 0.4);
}

.calc-option:has(input:checked) .calc-option-qty-wrap {
    border-top-color: rgba(255, 255, 255, 0.35);
}

.calc-option-qty-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.calc-option-qty-label .win-input {
    width: 4.5rem;
    padding: 2px 6px;
    font-size: 12px;
}

.calc-option-qty-unit {
    font-family: var(--font-mono);
    font-size: 11px;
    opacity: 0.85;
}

.calc-legend-hint {
    font-weight: normal;
    font-size: 12px;
    color: var(--ink-muted);
}

.calc-result-breakdown {
    margin: 8px 0 0;
    padding: 0 0 0 18px;
    font-size: 12px;
    text-align: left;
    color: var(--ink-muted);
}

.calc-result-breakdown li {
    margin-bottom: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.calc-option input {
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
}

.option-label {
    flex: 1;
    min-width: 100px;
}

.option-price {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-light);
}

.calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.win-select {
    width: 100%;
    padding: 3px 4px;
    font-family: var(--win-ui);
    font-size: 11px;
    background: var(--win-white);
    border: 2px solid;
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.calc-result {
    text-align: center;
    padding: 16px;
}

.calc-result.inset-panel {
    background: var(--paper);
}

.result-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.result-price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1.15;
    margin: 2px 0;
}

.result-note {
    font-size: 13px;
    color: var(--ink-muted);
    font-style: italic;
    margin: 0;
}

.calc-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 4px;
}

/* Services */
.services-block {
    margin-bottom: 20px;
}

.services-block-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--ink);
}

.services-block-lead {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--ink-muted);
    text-align: justify;
}

.services-grid {
    gap: 10px;
}

.service-item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-item--business {
    border-left: 3px solid var(--accent);
}

.service-item h5 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.25;
}

.service-item p {
    margin: 0;
    font-size: 13px;
    color: var(--ink-muted);
    flex: 1;
}

.service-price {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    background: var(--paper-line);
    padding: 2px 8px;
    border: 1px solid var(--rule);
    align-self: flex-start;
}

.services-footer-note {
    margin: 16px 0 12px;
    font-size: 13px;
    font-style: italic;
    color: var(--ink-muted);
    text-align: center;
}

.calc-options-panel--hidden {
    display: none !important;
}

.calc-services-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-services-toggle {
    display: none;
    width: 100%;
    justify-content: center;
}

.calc-category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.calc-category-tab {
    flex: 1;
    min-width: 140px;
    cursor: pointer;
}

.calc-category-tab input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.calc-category-tab span {
    display: block;
    text-align: center;
    padding: 8px 12px;
    border: 2px solid var(--rule);
    background: var(--paper);
    font-family: var(--font-mono);
    font-size: 13px;
}

.calc-category-tab input:checked + span {
    background: var(--win-navy);
    color: #fff;
    border-color: var(--win-navy);
    box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.25), inset -1px -1px 0 rgba(0, 0, 0, 0.25);
}

.calc-options {
    max-height: 360px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .calc-services-toggle {
        display: inline-flex;
    }

    .calc-services-wrap:not(.is-expanded) .calc-option {
        display: none !important;
    }

    .calc-services-wrap:not(.is-expanded) .calc-option.is-preview,
    .calc-services-wrap:not(.is-expanded) .calc-option:has(input:checked) {
        display: flex !important;
    }

    .calc-services-wrap.is-expanded .calc-options {
        max-height: 55vh;
    }
}

.win-input {
    width: 100%;
    padding: 6px 8px;
    border: 2px inset var(--win-gray);
    font-family: var(--font-mono);
    font-size: 14px;
    background: #fff;
}

.page-breadcrumb {
    font-family: var(--font-mono);
    font-size: 12px;
    margin-bottom: 16px;
    color: var(--ink-muted);
}

.page-breadcrumb a {
    color: var(--accent);
}

.price-table-wrap {
    overflow-x: auto;
    padding: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--paper-line);
    text-align: left;
    vertical-align: top;
}

.price-table thead th {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--paper-line);
    border-bottom: 2px solid var(--rule);
}

.price-table-price {
    font-family: var(--font-mono);
    font-weight: 500;
    color: var(--accent);
    white-space: nowrap;
}

.price-desc-short {
    margin: 0 0 6px;
}

.price-desc-details {
    margin: 0;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.45;
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-table-wrap--desktop {
    display: none;
}

@media (min-width: 769px) {
    .price-cards {
        display: none;
    }

    .price-table-wrap--desktop {
        display: block;
    }
}

.price-card {
    padding: 12px;
}

.price-card--business {
    border-left: 3px solid var(--accent);
}

.price-card-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--paper-line);
}

.price-card-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.3;
}

.price-card-price {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    align-self: flex-start;
}

.price-card-desc {
    margin: 0 0 6px;
    font-size: 14px;
}

.price-card-details {
    margin: 0;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.45;
}

.price-table-row--business td:first-child {
    border-left: 3px solid var(--accent);
}

.taskbar-item {
    text-decoration: none;
    color: inherit;
}

a.start-btn {
    text-decoration: none;
    color: inherit;
}

.services-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Reviews */
.reviews-grid {
    gap: 10px;
}

.review-item {
    padding: 12px;
    margin-bottom: 0;
}

.review-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.review-header img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 2px inset var(--win-dark);
    filter: grayscale(40%) sepia(15%);
}

.review-header strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.review-date {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-light);
}

.review-item p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-muted);
    font-style: italic;
}

.review-item p::before { content: '«'; color: var(--accent); }
.review-item p::after { content: '»'; color: var(--accent); }

/* About */
.about-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: start;
}

.about-photo {
    padding: 4px;
}

.about-photo img {
    width: 100%;
    display: block;
    filter: grayscale(30%) sepia(10%);
}

.photo-caption {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--ink-light);
    text-align: center;
    margin: 4px 0 0;
}

.about-text p {
    margin: 0 0 10px;
    text-align: justify;
}

.about-facts {
    list-style: none;
    padding: 12px 0 0;
    margin: 12px 0 0;
    border-top: 1px dashed var(--ink-light);
}

.about-facts li {
    font-size: 14px;
    padding: 4px 0;
}

.about-facts strong {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
}

/* FAQ */
.faq-list {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    padding: 10px 12px;
}

.faq-item dt {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.faq-item dd {
    margin: 0;
    font-size: 14px;
    color: var(--ink-muted);
    padding-left: 12px;
    border-left: 2px solid var(--accent);
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 16px 0;
}

.contact-link {
    min-width: 160px;
}

.contact-note {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-light);
    text-align: center;
    margin: 0;
}

.paper-footer {
    margin-top: 24px;
    text-align: center;
}

.footer-rule {
    height: 3px;
    background: var(--rule);
    margin-bottom: 12px;
}

.paper-footer p {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-light);
    margin: 0;
}

/* Payment */
.payment-grid {
    gap: 12px;
}

.payment-item {
    padding: 14px;
}

.payment-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 8px;
}

.payment-item p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.payment-item a {
    color: var(--accent);
}

/* Review form */
.section-rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin: 24px 0;
}

.review-form-wrap {
    margin-top: 8px;
}

.review-form {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-row label {
    font-family: var(--win-ui);
    font-size: 11px;
    font-weight: bold;
}

.form-row--inline {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.win-input,
.win-textarea {
    width: 100%;
    padding: 6px 8px;
    font-family: var(--font-serif);
    font-size: 14px;
    background: var(--win-white);
    border: 2px solid;
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.win-textarea {
    resize: vertical;
    min-height: 100px;
}

.win-file {
    font-family: var(--win-ui);
    font-size: 11px;
}

.form-hint {
    margin: 0;
    font-size: 12px;
    color: var(--ink-light);
    font-style: italic;
}

.form-note {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--ink-light);
    text-align: center;
}

.form-actions {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.form-errors,
.errorlist {
    margin: 0;
    padding: 8px 10px;
    list-style: none;
    font-family: var(--win-ui);
    font-size: 11px;
    color: #800;
    background: #ffe0e0;
    border: 1px solid #c88;
}

.errorlist li {
    margin: 0;
}

.captcha-box {
    margin: 0;
    overflow: hidden;
    max-width: 100%;
}

.recaptcha-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 78px;
}

.recaptcha-wrap > div {
    max-width: 100%;
}

@media (max-width: 480px) {
    .recaptcha-wrap {
        min-height: 144px;
    }
}

.discount-banner {
    padding: 14px 16px;
    margin-bottom: 16px;
    background: #fffde7;
    border: 2px solid #c9a227;
}

.discount-banner strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--accent);
}

.discount-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

.rating-field {
    border: none;
    padding: 0;
    margin: 0;
}

.rating-field legend {
    font-family: var(--win-ui);
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
}

.rating-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rating-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    background: var(--win-white);
    border: 2px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    cursor: pointer;
    min-width: 64px;
    font-family: var(--win-ui);
    font-size: 11px;
}

.rating-option:has(.rating-radio:checked) {
    background: #000080;
    color: #fff;
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.rating-option:has(.rating-radio:checked) .rating-stars {
    color: #ffd700;
}

.rating-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rating-stars {
    font-size: 14px;
    letter-spacing: 1px;
    color: #b8860b;
    line-height: 1;
}

.rating-num {
    font-size: 10px;
    opacity: 0.85;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px inset var(--win-dark);
    flex-shrink: 0;
}

/* Flash messages */
.messages-win {
    margin-bottom: 0;
}

.flash-messages {
    list-style: none;
    margin: 0;
    padding: 8px 10px;
}

.flash {
    font-family: var(--win-ui);
    font-size: 11px;
    padding: 6px 0;
}

.flash--success {
    color: #006400;
}

.flash--error {
    color: #800;
}

/* Win95 Taskbar */
.taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--taskbar-h);
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    background: var(--win-gray);
    border-top: 2px solid var(--win-light);
    z-index: 1000;
    font-family: var(--win-ui);
    font-size: 11px;
}

.start-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    height: 22px;
    font-family: var(--win-ui);
    font-size: 11px;
    font-weight: bold;
    background: var(--win-gray);
    border: 2px solid;
    border-color: var(--win-light) var(--win-dark) var(--win-dark) var(--win-light);
    cursor: default;
}

.start-btn::before {
    content: '🪟';
    font-size: 12px;
}

.start-btn:active {
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
}

.taskbar-items {
    display: flex;
    flex: 1;
    gap: 2px;
    overflow: hidden;
}

.taskbar-item {
    padding: 0 8px;
    height: 22px;
    line-height: 20px;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: var(--win-gray);
    border: 2px inset var(--win-dark);
}

.taskbar-item--active {
    border-style: outset;
    border-color: var(--win-dark) var(--win-light) var(--win-light) var(--win-dark);
    background: #ddd;
}

.taskbar-clock {
    padding: 0 6px;
    height: 22px;
    line-height: 20px;
    border: 1px inset var(--win-dark);
    background: var(--win-gray);
    font-variant-numeric: tabular-nums;
    min-width: 52px;
    text-align: center;
}

/* Responsive */
@media (max-width: 720px) {
    .desktop {
        padding: 10px 8px;
        gap: 10px;
    }

    .paper {
        padding: 18px 16px;
    }

    .review-form.inset-panel {
        padding: 12px 10px;
    }

    .captcha-box.group-box {
        padding: 12px 8px 10px !important;
    }

    .win-body {
        overflow-x: hidden;
    }

    .front-page {
        grid-template-columns: 1fr;
    }

    .front-stats {
        flex-direction: row;
        border-left: none;
        border-top: 3px solid var(--rule);
        padding-left: 0;
        padding-top: 12px;
        justify-content: space-around;
    }

    .columns-2,
    .columns-3,
    .calc-row,
    .about-layout {
        grid-template-columns: 1fr;
    }

    .calc-options {
        grid-template-columns: 1fr;
    }

    .about-photo-wrap,
    .about-photo {
        max-width: 200px;
        margin: 0 auto;
    }

    .masthead-top {
        flex-direction: column;
        gap: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
