        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
            background: #f8f6f2;
            color: #2c2b28;
            line-height: 1.7;
            padding: 0 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        a {
            color: #a67c4e;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover,
        a:focus-visible {
            color: #7a5a34;
            text-decoration: underline;
        }
        ul,
        ol {
            padding-left: 1.5rem;
        }
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            line-height: 1.25;
            color: #1e1d1a;
            margin-top: 2rem;
            margin-bottom: 0.75rem;
        }
        h1 {
            font-size: 2.4rem;
            margin-top: 0.5rem;
            border-bottom: 4px solid #d4b88c;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 6px solid #a67c4e;
            padding-left: 0.75rem;
        }
        h3 {
            font-size: 1.35rem;
            font-weight: 600;
        }
        h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #4a4238;
        }
        p {
            margin-bottom: 1.25rem;
            word-wrap: break-word;
        }
        .container {
            background: #ffffff;
            border-radius: 24px 24px 0 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
            padding: 1.5rem 2rem 2rem;
            margin-top: 1rem;
        }
        @media (max-width: 640px) {
            body {
                padding: 0 0.5rem;
            }
            .container {
                padding: 1rem 1rem 2rem;
                border-radius: 16px 16px 0 0;
            }
            h1 {
                font-size: 1.6rem;
            }
            h2 {
                font-size: 1.3rem;
            }
            h3 {
                font-size: 1.1rem;
            }
        }
        .site-header {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0 0.75rem;
            border-bottom: 1px solid #e6ddd0;
        }
        .my-logo {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: #2c2b28;
            text-transform: uppercase;
            background: linear-gradient(135deg, #a67c4e, #7a5a34);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .my-logo:hover {
            text-decoration: none;
            opacity: 0.85;
        }
        .my-logo small {
            font-size: 0.6rem;
            font-weight: 400;
            letter-spacing: 0.3px;
            display: block;
            -webkit-text-fill-color: #6b5e4e;
            color: #6b5e4e;
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 1.2rem;
            flex-wrap: wrap;
            padding: 0;
        }
        .nav-list a {
            font-weight: 500;
            font-size: 0.95rem;
            color: #3d3832;
            padding: 0.3rem 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.2s;
        }
        .nav-list a:hover {
            border-bottom-color: #a67c4e;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #3d3832;
            cursor: pointer;
            padding: 0.25rem 0.5rem;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover {
            background: #ede8df;
        }
        #nav-toggle {
            display: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-list {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 1rem 0 0.5rem;
                gap: 0.6rem;
            }
            #nav-toggle:checked~.nav-list {
                display: flex;
            }
            .nav-wrapper {
                flex-wrap: wrap;
                justify-content: flex-end;
            }
        }
        .breadcrumb {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0.75rem 0 0.25rem;
            font-size: 0.85rem;
            color: #6b5e4e;
        }
        .breadcrumb li+li::before {
            content: "›";
            padding: 0 0.5rem;
            color: #b8aa96;
        }
        .breadcrumb a {
            color: #6b5e4e;
        }
        .breadcrumb a:hover {
            color: #a67c4e;
        }
        .breadcrumb .active {
            color: #2c2b28;
            font-weight: 500;
        }
        .search-block {
            background: #f4efe8;
            padding: 1.25rem 1.5rem;
            border-radius: 16px;
            margin: 1.5rem 0 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }
        .search-block label {
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block form {
            display: flex;
            flex: 1 1 260px;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .search-block input[type="text"] {
            flex: 1 1 180px;
            padding: 0.6rem 1rem;
            border: 2px solid #ddd3c4;
            border-radius: 40px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
        }
        .search-block input[type="text"]:focus {
            border-color: #a67c4e;
            outline: none;
        }
        .search-block button {
            background: #a67c4e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.4rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .search-block button:hover {
            background: #7a5a34;
            transform: scale(1.02);
        }
        .featured-image {
            margin: 2rem 0 2.5rem;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
        }
        .featured-image img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
        }
        .featured-image figcaption {
            background: #f4efe8;
            padding: 0.75rem 1.25rem;
            font-size: 0.9rem;
            color: #4a4238;
            font-style: italic;
        }
        .meta-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: #6b5e4e;
            padding: 0.5rem 0 1rem;
            border-bottom: 1px dashed #e6ddd0;
            margin-bottom: 1.5rem;
        }
        .meta-bar i {
            margin-right: 0.35rem;
        }
        .review-content {
            max-width: 840px;
            margin: 0 auto;
        }
        .review-content p,
        .review-content li {
            font-size: 1.05rem;
        }
        .review-content .highlight-box {
            background: #f6f2eb;
            border-left: 6px solid #a67c4e;
            padding: 1.25rem 1.75rem;
            border-radius: 0 16px 16px 0;
            margin: 1.75rem 0;
        }
        .review-content blockquote {
            background: #ede8df;
            padding: 1.25rem 1.75rem;
            border-radius: 16px;
            font-style: italic;
            margin: 1.75rem 0;
            position: relative;
        }
        .review-content blockquote::before {
            content: "“";
            font-size: 3rem;
            color: #a67c4e;
            position: absolute;
            top: -0.25rem;
            left: 0.75rem;
            font-family: Georgia, serif;
            line-height: 1;
        }
        .review-content .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .review-content .stat-card {
            background: #faf8f5;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e6ddd0;
        }
        .review-content .stat-card .number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #a67c4e;
            display: block;
        }
        .review-content .stat-card .label {
            font-size: 0.85rem;
            color: #5b4f3e;
        }
        .comment-section {
            margin: 3rem 0 2rem;
            padding-top: 2rem;
            border-top: 2px solid #e6ddd0;
        }
        .comment-section h3 {
            margin-top: 0;
        }
        .comment-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            background: #faf8f5;
            padding: 1.5rem;
            border-radius: 16px;
        }
        .comment-form label {
            font-weight: 500;
            font-size: 0.9rem;
        }
        .comment-form input,
        .comment-form textarea {
            width: 100%;
            padding: 0.6rem 0.9rem;
            border: 2px solid #ddd3c4;
            border-radius: 10px;
            font-size: 0.95rem;
            background: #fff;
            transition: border 0.2s;
        }
        .comment-form input:focus,
        .comment-form textarea:focus {
            border-color: #a67c4e;
            outline: none;
        }
        .comment-form textarea {
            grid-column: 1 / -1;
            min-height: 100px;
            resize: vertical;
        }
        .comment-form .full-row {
            grid-column: 1 / -1;
        }
        .comment-form button {
            background: #a67c4e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.7rem 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            justify-self: start;
        }
        .comment-form button:hover {
            background: #7a5a34;
        }
        @media (max-width: 540px) {
            .comment-form {
                grid-template-columns: 1fr;
            }
            .comment-form .full-row {
                grid-column: 1;
            }
        }
        .rating-block {
            background: #f4efe8;
            padding: 1.5rem 2rem;
            border-radius: 20px;
            margin: 2.5rem 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        .rating-block .stars {
            display: flex;
            gap: 0.3rem;
            font-size: 2rem;
            color: #d4b88c;
        }
        .rating-block .stars .fas {
            color: #d4b88c;
            transition: transform 0.15s;
        }
        .rating-block .stars .fas:hover {
            transform: scale(1.2);
            color: #a67c4e;
            cursor: pointer;
        }
        .rating-block .score-num {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2c2b28;
        }
        .rating-block .score-label {
            font-size: 0.9rem;
            color: #5b4f3e;
        }
        .rating-block form {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .rating-block select {
            padding: 0.5rem 1rem;
            border: 2px solid #ddd3c4;
            border-radius: 40px;
            font-size: 1rem;
            background: #fff;
        }
        .rating-block button {
            background: #a67c4e;
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .rating-block button:hover {
            background: #7a5a34;
        }
        .site-footer {
            background: #1e1d1a;
            color: #d9d2c8;
            padding: 2.5rem 2rem 1.5rem;
            border-radius: 24px 24px 0 0;
            margin-top: 2.5rem;
        }
        .site-footer a {
            color: #d4b88c;
        }
        .site-footer a:hover {
            color: #f0e4d2;
        }
        .footer-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #f0e4d2;
            margin-top: 0;
            margin-bottom: 0.75rem;
            border-left: 3px solid #a67c4e;
            padding-left: 0.5rem;
        }
        .friend-link {
            display: block;
            padding: 0.3rem 0;
            font-size: 0.95rem;
        }
        .friend-link:hover {
            text-decoration: underline;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #3d3832;
            font-size: 0.85rem;
            color: #9a8e7e;
        }
        .copyright a {
            color: #d4b88c;
        }
        @media (max-width: 480px) {
            .rating-block {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }
            .rating-block .stars {
                justify-content: center;
            }
            .rating-block form {
                justify-content: center;
            }
            .meta-bar {
                flex-direction: column;
                gap: 0.4rem;
            }
            .site-footer {
                padding: 1.5rem 1rem 1rem;
            }
        }
        .skip-link {
            position: absolute;
            top: -100%;
            left: 1rem;
            background: #a67c4e;
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 0 0 8px 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
        .section-spacer {
            margin: 2.5rem 0;
        }
