:root {
            --accent: #512729;
            --dark: #232728;
            --light-bg: #FDF7F4;
            --text: #444;
        }
        /* ─── Breadcrumb Banner ─── */
        .tp-page-banner {
            position: relative;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: var(--dark);
        }
        .tp-page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(81,39,41,0.85) 0%, rgba(35,39,40,0.75) 100%);
            z-index: 2;
        }
        .tp-page-banner-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            transition: transform 8s ease;
            z-index: 1;
        }
        .tp-page-banner:hover .tp-page-banner-bg { transform: scale(1.1); }
        .tp-page-banner-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: #fff;
        }
        .tp-page-banner-content h1 {
            font-size: clamp(36px, 6vw, 64px);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 18px;
            color: #fff;
        }
        .tp-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .tp-breadcrumb li { font-size: 14px; font-weight: 500; letter-spacing: 1px; color: rgba(255,255,255,0.65); text-transform: uppercase; }
        .tp-breadcrumb li a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color .3s; }
        .tp-breadcrumb li a:hover { color: #fff; }
        .tp-breadcrumb li.active { color: #f5c6c6; }
        .tp-breadcrumb-sep { color: rgba(255,255,255,0.4); font-size: 18px; }

        /* ─── Intro ─── */
        .ht-about-intro { padding: 90px 0 40px; background: var(--light-bg); }
        .ht-about-intro .ht-badge {
            display: inline-flex; align-items: center; gap: 10px;
            background: #fdece9; color: var(--accent); font-size: 12px;
            font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
            padding: 8px 20px; border-radius: 30px; margin-bottom: 24px;
        }
        .ht-about-intro h2 { font-size: clamp(28px,4vw,44px); font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 24px; }
        .ht-about-intro h2 span { color: var(--accent); }
        .ht-about-intro p { font-size: 15.5px; line-height: 1.9; color: var(--text); font-weight: 400; margin-bottom: 18px; }

        /* ─── Blog articles ─── */
        .ht-blog-section { padding: 30px 0 80px; background: var(--light-bg); }
        .ht-article {
            background:#fff; border-radius:22px; padding: 50px 55px;
            box-shadow:0 6px 30px rgba(0,0,0,0.05);
            border:1px solid rgba(81,39,41,0.06);
            margin-bottom: 40px; transition: all .4s;
        }
        .ht-article:hover { box-shadow:0 20px 50px rgba(81,39,41,0.12); transform: translateY(-4px); }
        .ht-article__meta {
            display:inline-flex; align-items:center; gap:10px;
            background:#fdece9; color:var(--accent); font-size:12px; font-weight:800;
            letter-spacing:1.5px; text-transform:uppercase; padding:7px 18px;
            border-radius:30px; margin-bottom:22px;
        }
        .ht-article h2 { font-size: clamp(24px,3.2vw,34px); font-weight:900; color:var(--dark); line-height:1.25; margin-bottom:24px; }
        .ht-article__lead { font-size:16px; line-height:1.9; color:#444; font-weight:400; margin-bottom:26px; }
        .ht-article h3 {
            font-size:19px; font-weight:800; color:var(--accent); margin:32px 0 14px;
            line-height:1.4;
        }
        .ht-article p { font-size:15.5px; line-height:1.9; color:var(--text); font-weight:400; margin-bottom:18px; }
        .ht-article__close {
            margin-top:30px; padding:22px 26px; background:var(--light-bg);
            border-left:4px solid var(--accent); border-radius:0 12px 12px 0;
        }
        .ht-article__close p { margin:0; font-size:15px; line-height:1.85; color:#555; font-style:italic; }
        .ht-article__close a { color:var(--accent); font-weight:700; text-decoration:underline; }

        /* ─── CTA ─── */
        .ht-cta { background: var(--accent); padding: 80px 0; text-align: center; }
        .ht-cta h2 { color: #fff; font-size: clamp(26px,4vw,44px); font-weight: 900; margin-bottom: 20px; }
        .ht-cta p { color: rgba(255,255,255,0.8); font-size: 16px; max-width: 600px; margin: 0 auto 36px; font-weight: 400; }
        .ht-btn-white { background: #fff; color: var(--accent); padding: 16px 44px; border-radius: 50px; font-size: 14px; font-weight: 800; letter-spacing: 1px; text-decoration: none; display: inline-block; transition: all .3s; }
        .ht-btn-white:hover { background: var(--dark); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.25); }

        .tp-btn-black-radius.btn-accent { background-color: #512729; color: #fff; }
        .it-footer-style.crp-footer-bg { background-color: #232728; }
        .white-filter { filter: brightness(0) invert(1); }
        .opacity-low { opacity: 0.2; }

        @media (max-width: 767px) {
            .tp-page-banner { height: 260px; }
            .ht-article { padding: 34px 26px; }
        }