:root {
            --brand: #7C342F;
            --brand-dk: #5A2420;
            --brand-lt: #9B4540;
            --gold: #9B7B4D;
            --gold-lt: #B8924A;
            --gold-pale: #F5EFE4;
            --footer-bg: #4A4F55;
            --body-text: #222222;
            --muted: #5A5A5A;
            --light-bg: #F7F4F0;
            --white: #FFFFFF;
            --border: #E0D8D0;
            --r: 8px;
            --r-lg: 14px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
            --shadow: 0 4px 24px rgba(0, 0, 0, .12);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--body-text);
            background: #fff;
            line-height: 1.65;
            -webkit-font-smoothing: antialiased
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.2;
            color: var(--body-text)
        }

        a {
            color: inherit;
            text-decoration: none
        }

        img {
            display: block;
            max-width: 100%
        }

        .container {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 26px;
            border-radius: 4px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all .2s;
            border: 2px solid transparent;
            text-decoration: none;
            white-space: nowrap
        }

        .btn-brand {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand)
        }

        .btn-brand:hover {
            background: var(--brand-dk);
            border-color: var(--brand-dk)
        }

        .btn-white-outline {
            background: transparent;
            color: #fff;
            border-color: rgba(255, 255, 255, .6)
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff
        }

        .btn-gold {
            background: var(--gold-lt);
            color: #fff;
            border-color: var(--gold-lt)
        }

        .btn-gold:hover {
            background: var(--gold);
            border-color: var(--gold)
        }

        /* ── TOPBAR & NAV (from homepage) ── */
        .topbar {
            background: #000;
            padding: 9px 0;
            font-size: 12.5px;
            font-family: 'Open Sans', sans-serif
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap
        }

        .topbar a,
        .topbar span {
            color: #ccc;
            display: inline-flex;
            align-items: center;
            gap: 6px
        }

        .topbar a:hover {
            color: var(--gold-lt)
        }

        .topbar-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap
        }

        .topbar-right {
            display: flex;
            align-items: center;
            gap: 16px
        }

        .topbar-divider {
            width: 1px;
            height: 12px;
            background: rgba(255, 255, 255, .2)
        }

        .topbar-cta {
            background: var(--brand);
            color: #fff !important;
            padding: 5px 14px;
            border-radius: 3px;
            font-weight: 600;
            font-size: 11.5px;
            letter-spacing: .04em
        }

        .topbar-cta:hover {
            background: var(--brand-dk) !important
        }

        .social-links {
            display: flex;
            gap: 10px;
            align-items: center
        }

        .social-links a {
            color: #aaa !important;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: color .15s
        }

        .social-links a:hover {
            color: var(--gold-lt) !important
        }

        nav {
            background: #fff;
            box-shadow: 0 1px 0 var(--border);
            position: sticky;
            top: 0;
            z-index: 200
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
            gap: 20px
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0
        }

        .logo-img {
            height: 58px;
            width: auto;
            display: block;
            max-height: 58px
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 2px
        }

        .nav-links a {
            font-family: 'Montserrat', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: #4A4F55;
            padding: 8px 12px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 4px;
            transition: all .15s
        }

        .nav-links a:hover,
        .nav-links .active>a {
            color: var(--brand)
        }

        .nav-links .has-dd>a::after {
            content: '';
            border: 4px solid transparent;
            border-top-color: currentColor;
            margin-top: 2px;
            display: inline-block
        }

        .dropdown {
            position: absolute;
            top: calc(100%+4px);
            left: 0;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--r);
            box-shadow: var(--shadow);
            min-width: 230px;
            padding: 6px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: all .18s
        }

        .has-dd {
            position: relative
        }

        .has-dd:hover .dropdown,
        .has-dd:focus-within .dropdown {
            opacity: 1;
            pointer-events: auto;
            transform: none
        }

        .dropdown a {
            display: block;
            padding: 8px 14px;
            font-family: 'Open Sans', sans-serif;
            font-size: 13.5px;
            color: #4A4F55;
            border-radius: 4px;
            transition: background .12s
        }

        .dropdown a:hover {
            background: var(--light-bg);
            color: var(--brand)
        }

        .dd-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--muted);
            letter-spacing: .08em;
            text-transform: uppercase;
            padding: 8px 14px 4px;
            display: block
        }

        .dd-sep {
            height: 1px;
            background: var(--border);
            margin: 4px 6px
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0
        }

        .nav-phone {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--brand);
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap
        }

        .burger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            flex-direction: column;
            gap: 5px
        }

        .burger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--brand);
            border-radius: 2px;
            transition: all .2s
        }

        .mobile-nav {
            display: none;
            background: #fff;
            border-top: 2px solid var(--brand)
        }

        .mobile-nav.open {
            display: block
        }

        .mobile-nav a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 24px;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            color: #4A4F55;
            border-bottom: 1px solid var(--border)
        }

        .mobile-nav a:hover {
            color: var(--brand);
            background: var(--light-bg)
        }

        .mobile-nav .m-section {
            padding: 8px 24px 4px;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--muted);
            letter-spacing: .08em;
            text-transform: uppercase;
            background: var(--light-bg)
        }

        .mobile-nav .m-phone {
            font-weight: 700;
            color: var(--brand);
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            padding: 14px 24px;
            border-bottom: none
        }

        /* ── POST HERO ── */
        .post-hero {
            background: var(--brand-dk);
            padding: 52px 0 44px;
            position: relative;
            overflow: hidden
        }

        .post-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 60px 60px
        }

        .post-hero-inner {
            position: relative;
            z-index: 2
        }

        .breadcrumb {
            font-size: 13px;
            color: rgba(255, 255, 255, .55);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: #5a242100;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, .55);
            text-decoration: none
        }

        .breadcrumb a:hover {
            color: var(--gold-lt)
        }

        .post-cat-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .04em;
            color: #fff;
            margin-bottom: 16px
        }

        .post-hero h1 {
            font-family: 'Montserrat', sans-serif !important;
            font-weight: 800 !important;
            color: #fff !important;
            font-size: clamp(26px, 4vw, 44px) !important;
            line-height: 1.15 !important;
            margin-bottom: 16px !important;
            letter-spacing: -.3px !important
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
            flex-wrap: wrap
        }

        .post-meta svg {
            stroke: var(--gold-lt)
        }

        /* ── POST LAYOUT ── */
        .post-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 48px;
            padding: 52px 0 64px;
            align-items: start
        }

        .post-featured-img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: var(--r-lg);
            margin-bottom: 36px;
            display: block
        }

        /* ── POST CONTENT ── */
        .post-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(20px, 2.5vw, 26px);
            font-weight: 700;
            color: var(--body-text);
            margin: 32px 0 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--brand)
        }

        .post-content h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--body-text);
            margin: 24px 0 10px
        }

        .post-content p {
            font-size: 16px;
            color: #333;
            line-height: 1.85;
            margin-bottom: 18px
        }

        .post-content ul,
        .post-content ol {
            margin: 0 0 18px 24px;
            font-size: 15.5px;
            color: #333;
            line-height: 1.8
        }

        .post-content li {
            margin-bottom: 6px
        }

        .post-content a {
            color: var(--brand);
            text-decoration: underline
        }

        .post-content a:hover {
            color: var(--brand-dk)
        }

        .post-content strong {
            font-weight: 700;
            color: var(--body-text)
        }

        .post-content em {
            font-style: italic
        }

        /* ── SIDEBAR ── */
        .post-sidebar {
            position: sticky;
            top: 90px
        }

        .sidebar-card {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: var(--r-lg);
            padding: 24px;
            margin-bottom: 20px
        }

        .sidebar-card h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--body-text);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--brand)
        }

        .sidebar-cta {
            background: var(--brand);
            border-radius: var(--r-lg);
            padding: 24px;
            margin-bottom: 20px;
            text-align: center
        }

        .sidebar-cta h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 8px
        }

        .sidebar-cta p {
            font-size: 13px;
            color: rgba(255, 255, 255, .75);
            line-height: 1.6;
            margin-bottom: 16px
        }

        .related-post {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            align-items: center
        }

        .related-post:last-child {
            border-bottom: none
        }

        .related-post img {
            width: 56px;
            height: 56px;
            object-fit: cover;
            border-radius: var(--r);
            flex-shrink: 0
        }

        .related-post-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 12.5px;
            font-weight: 600;
            color: var(--body-text);
            line-height: 1.4;
            margin-bottom: 3px
        }

        .related-post-date {
            font-size: 11px;
            color: var(--muted)
        }

        .related-post:hover .related-post-title {
            color: var(--brand)
        }

        /* ── FOOTER ── */
        footer {
            background: var(--footer-bg);
            color: rgba(255, 255, 255, .75);
            padding: 60px 0 0
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
            gap: 32px;
            margin-bottom: 44px
        }

        .f-logo-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .04em
        }

        .f-logo-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 9.5px;
            font-weight: 700;
            color: var(--gold-lt);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-top: 2px
        }

        .f-about p {
            margin-top: 14px;
            font-size: 13.5px;
            line-height: 1.75;
            max-width: 270px;
            color: rgba(255, 255, 255, .65)
        }

        .f-marn {
            margin-top: 16px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap
        }

        .marn-badge {
            padding: 5px 12px;
            border-radius: 3px;
            background: rgba(155, 123, 77, .2);
            color: var(--gold-lt);
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            font-weight: 700;
            border: 1px solid rgba(155, 123, 77, .3)
        }

        .f-col h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, .1)
        }

        .f-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 9px
        }

        .f-col a {
            font-size: 13.5px;
            color: rgba(255, 255, 255, .65);
            transition: color .14s;
            display: flex;
            align-items: center;
            gap: 7px
        }

        .f-col a::before {
            content: '→';
            color: var(--gold);
            font-size: 11px;
            flex-shrink: 0
        }

        .f-col a:hover {
            color: var(--gold-lt)
        }

        .f-contact-item {
            display: flex;
            gap: 10px;
            margin-bottom: 11px;
            font-size: 13.5px;
            color: rgba(255, 255, 255, .65)
        }

        .f-ci-icon {
            color: var(--gold-lt);
            flex-shrink: 0;
            margin-top: 2px
        }

        .f-contact-item a:hover {
            color: var(--gold-lt)
        }

        .f-hours {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3px 14px;
            font-size: 13px;
            margin-top: 4px
        }

        .f-hours .day {
            color: rgba(255, 255, 255, .5)
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 18px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .4)
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .5)
        }

        .footer-bottom a:hover {
            color: var(--gold-lt)
        }

        .footer-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap
        }

        .disclaimer {
            font-size: 11.5px;
            color: rgba(255, 255, 255, .3);
            max-width: 420px;
            line-height: 1.5
        }

        .float-call {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 500;
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--brand);
            color: #fff;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
            transition: transform .2s
        }

        .float-call:hover {
            transform: scale(1.08);
            background: var(--brand-dk)
        }

        /* ── RESPONSIVE ── */
        @media(max-width:1024px) {
            .post-layout {
                grid-template-columns: 1fr
            }

            .post-sidebar {
                position: static
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr
            }
        }

        @media(max-width:768px) {

            .nav-links,
            .nav-right {
                display: none
            }

            .burger {
                display: flex
            }

            .logo-img {
                height: 44px !important;
                max-height: 44px !important
            }

            .topbar-right {
                display: none
            }

            .footer-grid {
                grid-template-columns: 1fr
            }

            .float-call {
                display: flex
            }

            .post-featured-img {
                height: 240px
            }
        }