:root {
    --cream: #fffff4;
    --alt: #fff4ee;
    --sand: #e8d5c6;
    --card: #ffeadf;
    --brown: #6f3423;
    --dark: #2c1810;
    --orange: #ffa61e;
    --text: #291c17;
    --muted: #715f58;
    --shadow: 0 12px 30px rgba(111, 52, 35, .11)
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth
}

html {
    scroll-padding-top: 76px
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--text);
    font: 400 15px/1.8 Roboto, sans-serif
}

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: auto
}

.navbar {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(232, 213, 198, .96);
    box-shadow: 0 3px 16px rgba(44, 24, 16, .09);
    backdrop-filter: blur(12px)
}

.nav-inner {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--brown);
    font: 800 1.2rem "Playfair Display", serif;
    white-space: nowrap
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    overflow: hidden;
    place-items: center;
    border: 2px solid var(--brown);
    border-radius: 50%;
    background: var(--cream)
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: .82rem;
    font-weight: 700
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 0;
    background: none
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px;
    background: var(--brown)
}

.mobile-menu {
    display: none;
    padding: 8px 20px 20px
}

.mobile-menu.open {
    display: grid;
    gap: 7px
}

.mobile-menu a:not(.btn) {
    padding: 7px;
    font-weight: 700
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: .86rem;
    font-weight: 800
}

.btn-primary {
    background: var(--brown);
    color: #fff
}

.btn-outline {
    border-color: var(--brown);
    color: var(--brown)
}

.nav-cta {
    padding: 7px 13px
}

.article-hero {
    padding: 68px 0 56px;
    background: linear-gradient(145deg, var(--alt), var(--card));
    text-align: center
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .8rem
}

.article-hero h1 {
    max-width: 850px;
    margin: 0 auto 16px;
    color: var(--orange);
    font: 800 clamp(2rem, 5vw, 3.8rem)/1.12 "Playfair Display", serif
}

.article-hero p {
    max-width: 720px;
    margin: auto;
    color: var(--muted);
    font-size: 1rem
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 20px
}

.article-meta span {
    padding: 5px 10px;
    border-radius: 99px;
    background: #fff;
    color: var(--brown);
    font-size: .72rem;
    font-weight: 800
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, .65fr);
    align-items: start;
    gap: 42px;
    padding: 64px 0
}

.article-content {
    min-width: 0
}

.article-cover {
    width: 100%;
    max-height: 480px;
    margin-bottom: 30px;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--shadow)
}

.tips-page .article-layout {
    grid-template-columns: minmax(0, 700px) minmax(240px, 280px);
    justify-content: center;
    gap: 36px
}

.tips-page .article-content {
    max-width: 700px
}

.tips-page .article-cover {
    width: auto;
    max-width: min(100%, 500px);
    max-height: 750px;
    margin: 0 auto 34px;
    object-fit: contain
}

.tips-page .article-content>p,
.tips-page .article-content>h2,
.tips-page .article-content>ol,
.tips-page .article-content>.callout,
.tips-page .article-content>.article-cta {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto
}

.tips-page .side-video video {
    max-height: 400px
}

.article-content h2 {
    margin: 34px 0 10px;
    color: var(--brown);
    font: 800 1.65rem "Playfair Display", serif
}

.article-content h3 {
    margin: 25px 0 7px;
    color: var(--brown);
    font-size: 1.05rem
}

.article-content p {
    margin: 0 0 16px;
    color: #4c403b
}

.article-content ul,
.article-content ol {
    padding-left: 22px;
    color: #4c403b
}

.article-content li {
    margin-bottom: 11px
}

.callout {
    margin: 28px 0;
    padding: 20px;
    border-left: 5px solid var(--orange);
    border-radius: 0 14px 14px 0;
    background: var(--alt);
    color: var(--brown);
    font-weight: 700
}

.article-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding: 24px;
    border-radius: 18px;
    background: var(--card)
}

.business-hero {
    background: radial-gradient(circle at 50% 0, rgba(255, 166, 30, .12), transparent 42%), linear-gradient(145deg, var(--alt), var(--card))
}

.owner-feature {
    display: grid;
    grid-template-columns: minmax(220px, .65fr) 1fr;
    align-items: center;
    gap: 28px;
    margin: 0 0 34px;
    padding: 22px;
    border-radius: 24px;
    background: var(--alt);
    box-shadow: var(--shadow)
}

.owner-feature img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 18px
}

.owner-feature figcaption {
    display: grid;
    gap: 5px
}

.owner-feature strong {
    color: var(--brown);
    font: 800 1.75rem/1.2 "Playfair Display", serif
}

.owner-feature span {
    color: var(--muted);
    font-weight: 700
}

.article-lead {
    color: var(--brown) !important;
    font-size: 1.05rem;
    font-weight: 600
}

.business-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0
}

.business-stats div {
    padding: 18px 10px;
    border-radius: 15px;
    background: var(--alt);
    text-align: center
}

.business-stats strong,
.business-stats span {
    display: block
}

.business-stats strong {
    color: var(--brown);
    font-size: 1.45rem
}

.business-stats span {
    color: var(--muted);
    font-size: .72rem
}

.owner-summary {
    text-align: center
}

.owner-summary img {
    width: 74px;
    height: 74px;
    margin: 0 auto 12px
}

.owner-summary h2 {
    margin-bottom: 4px
}

.article-sidebar {
    position: sticky;
    top: 90px;
    display: grid;
    gap: 18px
}

.sidebar-card {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow)
}

.sidebar-card h2 {
    margin: 0 0 10px;
    color: var(--brown);
    font: 800 1.2rem "Playfair Display", serif
}

.sidebar-card p {
    margin: 0;
    color: var(--muted);
    font-size: .82rem
}

.side-video {
    overflow: hidden;
    border-radius: 18px;
    background: var(--dark);
    box-shadow: var(--shadow)
}

.side-video video {
    width: 100%;
    max-height: 470px;
    object-fit: cover
}

.related {
    padding: 65px 0;
    background: var(--alt)
}

.related h2 {
    margin: 0 0 25px;
    color: var(--orange);
    font: 800 2rem "Playfair Display", serif;
    text-align: center
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.related-card {
    overflow: hidden;
    border-radius: 17px;
    background: #fff;
    box-shadow: var(--shadow)
}

.related-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover
}

.related-card div {
    padding: 17px
}

.related-card strong {
    display: block;
    color: var(--brown);
    line-height: 1.4
}

.related-card span {
    color: var(--muted);
    font-size: .75rem
}

.footer {
    padding: 55px 0 22px;
    background: var(--dark);
    color: #f5e6d0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 35px
}

.footer-brand,
.footer .brand {
    color: #f5d8b5
}

.footer-grid p,
.footer-grid a {
    color: #c4a882;
    font-size: .8rem
}

.footer-grid>div>a:not(.brand) {
    display: block;
    margin: 7px 0
}

.footer-grid h3 {
    color: #f5d8b5;
    font-size: .9rem
}

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

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: transform .2s ease, background .2s ease, border-color .2s ease
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 166, 30, .5);
    background: rgba(255, 166, 30, .18)
}

.social-links svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.social-links a:first-child svg {
    fill: #fff;
    stroke: none
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #c4a882;
    font-size: .75rem
}

@media(max-width:1024px) {
    .desktop-nav {
        gap: 10px;
        font-size: .74rem
    }

    .nav-cta {
        display: none
    }
}

@media(max-width:768px) {
    .container {
        width: min(100% - 32px, 680px)
    }

    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .article-hero {
        padding: 52px 0 44px
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 48px 0
    }

    .tips-page .article-layout {
        grid-template-columns: 1fr
    }

    .tips-page .article-content {
        max-width: none
    }

    .article-sidebar {
        position: static;
        grid-template-columns: 1fr 1fr
    }

    .sidebar-card {
        grid-column: 1/-1
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    body {
        font-size: 14px
    }

    .container {
        width: calc(100% - 28px)
    }

    .article-hero h1 {
        font-size: 2.15rem
    }

    .article-cover {
        max-height: 320px
    }

    .tips-page .article-cover {
        width: 100%;
        max-width: 420px;
        max-height: none
    }

    .article-content h2 {
        font-size: 1.4rem
    }

    .article-sidebar,
    .related-grid {
        grid-template-columns: 1fr
    }

    .sidebar-card {
        grid-column: auto
    }

    .side-video video {
        max-height: 390px
    }

    .article-cta {
        align-items: stretch;
        flex-direction: column
    }

    .article-cta .btn {
        width: 100%
    }

    .owner-feature {
        grid-template-columns: 1fr;
        padding: 14px
    }

    .owner-feature strong {
        font-size: 1.45rem
    }

    .business-stats {
        gap: 6px
    }

    .business-stats div {
        padding: 13px 4px
    }

    .business-stats strong {
        font-size: 1.2rem
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media(max-width:360px) {
    .container {
        width: calc(100% - 24px)
    }
}
