@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --accent: #A47149;
    --accent-light: #D6C9BC;
    --bg-deep: #FDFBF8;
    --bg-surface: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

::selection {
    background: var(--accent);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar Redesign */
.navbar {
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-deep);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s ease;
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right {
    justify-content: flex-end;
}

.navbar a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-smooth);
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase;
    color: var(--text-main) !important;
    white-space: nowrap;
}

.navbar a:hover {
    color: var(--accent);
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.blog-hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 14px;
    height: 14px;
    stroke: var(--accent);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-item .icon {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.category {
    font-family: var(--font-display);
    color: var(--accent);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 0.92;
    margin-bottom: 25px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.meta {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f0f0f0;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Article Layout */
main.container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    padding: 60px 0;
}

.content {
    max-width: 100%;
    line-height: 1.7;
}

.content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin: 4rem 0 1.5rem;
    line-height: 1.15;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-break: break-word;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.h2-text-wrap {
    display: block;
    flex: 1;
}

.h2-icon {
    width: 30px;
    height: 30px;
    color: var(--accent);
    opacity: 0.9;
    flex-shrink: 0;
    margin-top: 4px;
    /* Align with first line of text */
}

.h3-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    opacity: 0.7;
    flex-shrink: 0;
    margin-right: 8px;
    vertical-align: middle;
}

.t-accent {
    color: var(--accent);
}

.t-main {
    color: var(--text-main);
}

.content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 1.8rem 0 0.8rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.content p {
    font-size: 1.18rem;
    line-height: 1.85;
    margin-bottom: 2.2rem;
    color: #2D2D2D;
    font-weight: 400;
    text-align: justify;
    letter-spacing: 0.01em;
}

/* Luxury Drop Cap */
.drop-cap::first-letter {
    font-family: var(--font-display);
    float: left;
    font-size: 4.8rem;
    line-height: 0.75;
    padding-top: 8px;
    padding-right: 15px;
    padding-left: 3px;
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
}

/* TLR Expert Tip Box */
.expert-tip {
    background: #fff;
    border: 1px solid rgba(164, 113, 73, 0.15);
    padding: 35px 40px;
    border-radius: 20px;
    margin: 4rem 0;
    position: relative;
    box-shadow: 0 20px 40px rgba(164, 113, 73, 0.04);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tip-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 5px;
}

.expert-tip::before {
    content: 'TLR EXPERT TIP';
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.2em;
}

.expert-tip p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
}

/* Highlighted Text */
.highlight-luxury {
    background: linear-gradient(120deg, rgba(164, 113, 73, 0.1) 0%, rgba(164, 113, 73, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.3em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
    font-weight: 600;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem 0;
    opacity: 0.3;
}

.section-divider span {
    width: 60px;
    height: 1px;
    background: var(--accent);
}

.section-divider svg {
    width: 14px;
    height: 14px;
    margin: 0 20px;
    color: var(--accent);
}

.content ul,
.content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.luxury-list {
    list-style: none;
    padding-left: 0 !important;
}

.luxury-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.luxury-list li svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 6px;
}

.luxury-list li span {
    flex: 1;
}

.content li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.content blockquote {
    margin: 4rem 0;
    padding: 60px;
    background: #fff;
    border-left: 5px solid var(--accent);
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-main);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    border-radius: 0 24px 24px 0;
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 3rem 0;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.content a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(164, 113, 73, 0.2);
    transition: var(--transition-smooth);
}

.content a:hover {
    border-bottom-color: var(--accent);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 50px 40px;
    border: 1px solid rgba(164, 113, 73, 0.12);
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
    border-radius: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(164, 113, 73, 0.3);
    pointer-events: none;
}

.cta-box::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.cta-box::after {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.cta-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 50px 100px rgba(164, 113, 73, 0.1);
}

.cta-eyebrow {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 20px;
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.cta-ornament {
    width: 30px;
    height: 1px;
    background: var(--accent-light);
    margin: 20px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-ornament svg {
    width: 10px;
    height: 10px;
    background: var(--bg-surface);
    color: var(--accent);
    padding: 0 4px;
    position: absolute;
}

.cta-box p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--text-muted) !important;
    margin-bottom: 30px !important;
}

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: block;
    padding: 18px 25px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 100px;
}

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

.btn-primary:hover {
    background: var(--text-main);
    transform: translateY(-5px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    margin-top: 15px;
}

/* Product Recommendations */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 3rem 0;
    counter-reset: product-counter;
}

.product-card {
    background: #fff;
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    position: relative;
    counter-increment: product-counter;
}

.product-card::before {
    content: counter(product-counter, decimal-leading-zero);
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.product-card h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-main);
    line-height: 1.3;
}

.product-card .price-tag {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-small {
    padding: 12px 20px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: #ffffff !important;
}

/* Disable 3D tilt on touch devices */
@media (pointer: coarse) {
    .product-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        border-color: rgba(0, 0, 0, 0.05);
    }
}

/* Mobile: horizontal strip layout */
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 2rem 0;
    }

    .product-card {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        text-align: left;
        padding: 16px 18px 16px 22px;
        gap: 1px 14px;
        border-radius: 14px;
        overflow: hidden;
    }

    .product-card::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent);
        opacity: 0.55;
        border-radius: 14px 0 0 14px;
    }

    .product-card::before {
        display: none;
    }

    .product-card h4 {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        font-size: 0.8rem;
        letter-spacing: 0.04em;
    }

    .product-card .price-tag {
        grid-column: 1;
        grid-row: 2;
        margin-bottom: 0;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }

    .product-card .btn-small {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
        padding: 9px 13px;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ======================== FOOTER — LUXURY REDESIGN ======================== */
footer {
    background: #f9f6f1;
    color: var(--text-main);
    padding: 0 0 44px;
}

.footer-ornament-bar {
    display: flex;
    align-items: center;
    margin-bottom: 72px;
}

.footer-orn-line {
    flex: 1;
    height: 1px;
}

.footer-orn-line:first-child {
    background: linear-gradient(to right, transparent, var(--accent));
}

.footer-orn-line:last-child {
    background: linear-gradient(to left, transparent, var(--accent));
}

.footer-orn-diamond {
    width: 14px;
    height: 14px;
    color: var(--accent);
    flex-shrink: 0;
    margin: 0 22px;
}

.footer-brand-block {
    text-align: center;
    margin-bottom: 64px;
}

.footer-eyebrow {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 18px;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    border-top: 1px solid rgba(164, 113, 73, 0.18);
    border-bottom: 1px solid rgba(164, 113, 73, 0.18);
    padding: 52px 0;
    margin-bottom: 44px;
    align-items: center;
}

.footer-col {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col+.footer-col {
    border-left: 1px solid rgba(164, 113, 73, 0.18);
}

.footer-col-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.footer-col-value {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}

.footer-contact-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--accent);
}

.footer-col-cta {
    text-align: center;
    align-items: center;
    padding: 0 64px;
    gap: 16px;
}

.footer-cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border-radius: 100px;
}

.footer-cta-btn:hover {
    background: #8a5c38;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(164, 113, 73, 0.25);
}

.footer-inquiry-link {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.footer-inquiry-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.footer-nav-links {
    display: flex;
    gap: 32px;
}

.footer-nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: var(--accent);
}

/* ======================== SIDEBAR REVIEWS WIDGET ======================== */
.sidebar-reviews {
    position: fixed;
    top: 140px;
    /* Align to where the sidebar sits: right edge = container outer margin */
    right: calc((100vw - min(1200px, 90vw)) / 2);
    width: 320px;
    z-index: 200;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
    /* Hidden until article is in view */
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.sidebar-reviews.sr-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sr-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sr-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent);
}

.sr-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.sr-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-light);
    transition: background 0.4s ease, transform 0.4s ease, width 0.4s ease;
    cursor: default;
}

.sr-dot.active {
    background: var(--accent);
    transform: scale(1.35);
    width: 18px;
    border-radius: 4px;
}

.sr-track {
    position: relative;
    height: 504px;
    background: #1a140e;
    overflow: hidden;
}

.sr-track video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sr-overlay-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15,10,6,0.82) 0%, rgba(15,10,6,0.5) 50%, transparent 100%);
    padding: 52px 20px 20px;
    text-align: center;
}

.sr-overlay-footer .sr-overlay-eyebrow {
    font-family: var(--font-display);
    font-size: 0.48rem;
    font-weight: 800;
    letter-spacing: 0.46em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 3px;
    line-height: 1;
    text-align: center;
    opacity: 0.9;
}

.sr-overlay-footer .sr-overlay-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.sr-overlay-footer .sr-overlay-btn {
    display: inline-block;
    padding: 10px 26px;
    background: rgba(30, 20, 10, 0.55);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.4s cubic-bezier(0.23,1,0.32,1),
                border-color 0.4s cubic-bezier(0.23,1,0.32,1),
                transform 0.4s cubic-bezier(0.23,1,0.32,1);
}

.sr-overlay-footer .sr-overlay-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.sr-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    will-change: transform, opacity;
}

.sr-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.sr-card.exit {
    opacity: 0;
    transform: translateX(-28px);
}

.sr-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* MOBILE FIXES */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrap {
        order: 1;
    }

    main.container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sidebar {
        position: static;
    }

    .sidebar-reviews {
        display: none;
    }

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

    .footer-col {
        border-left: none !important;
        border-bottom: 1px solid rgba(164, 113, 73, 0.18);
        padding: 28px 0;
    }

    .footer-col:last-child {
        border-bottom: none;
    }

    .footer-col-cta {
        align-items: flex-start;
        padding: 28px 0;
    }
}

@media (max-width: 768px) {
    .footer-ornament-bar {
        margin-bottom: 48px;
    }

    .footer-wordmark {
        font-size: 1.75rem;
        letter-spacing: 0.06em;
    }

    .footer-brand-block {
        margin-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .nav-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .brand-name {
        font-size: 1rem !important;
        letter-spacing: 0.25em !important;
    }

    .blog-hero {
        padding-top: 100px;
        padding-bottom: 30px;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }

    main.container {
        padding: 30px 15px;
    }

    .content h2 {
        font-size: 1.5rem;
        margin: 2rem 0 0.8rem;
    }

    .content h3 {
        font-size: 1.1rem;
    }

    .content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .content blockquote {
        padding: 25px;
        margin: 2rem 0;
        font-size: 1.2rem;
    }

    .content img {
        margin: 2rem 0;
    }
}

.mobile-cta {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 1001;
    display: none;
}

.mobile-cta .btn {
    border-radius: 100px;
    box-shadow: 0 20px 40px rgba(164, 113, 73, 0.3);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 100px;
    }
}

/* ======================== LUXURY POPUP STYLES ======================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    background: var(--bg-surface);
    width: 90%;
    max-width: 600px;
    padding: 60px;
    border-radius: 32px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: 1px solid rgba(164, 113, 73, 0.1);
}

.popup-card.landscape {
    max-width: 900px;
    display: flex;
    padding: 0;
    min-height: 420px;
}

.popup-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    background: var(--accent);
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.image-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #FFF;
    z-index: 2;
}

.overlay-brand {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin-bottom: 8px;
}

.overlay-tagline {
    font-size: 0.75rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

.popup-content {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.popup-overlay.active .popup-card {
    transform: translateY(0) scale(1);
}

/* Decorative Accents */
.popup-corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--accent);
    pointer-events: none;
    opacity: 0.3;
}

.popup-corner-accent.tl {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.popup-corner-accent.br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.popup-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.popup-panel {
    transition: all 0.6s ease;
}

.popup-panel.hidden {
    display: none;
}

.popup-eyebrow {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--accent);
    margin-bottom: 10px;
    /* Reduced from 15px */
}

.popup-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.15;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 18px;
}

.popup-accent {
    color: var(--accent);
}

.popup-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    /* Reduced from 20px */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* Reduced from 8px */
}

.form-group label {
    font-size: 0.7rem;
    /* Slightly smaller */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-main);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: #FAFAFA;
    transition: var(--transition-smooth);
    color: var(--text-main);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-group select option[value=""][disabled] {
    color: #aaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #FFF;
    box-shadow: 0 5px 15px rgba(164, 113, 73, 0.05);
}

.form-group.has-error input,
.form-group.has-error select {
    border-color: #d94f4f;
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(217, 79, 79, 0.08);
}

.field-error {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: #d94f4f;
    font-weight: 500;
    letter-spacing: 0.01em;
    display: none;
}

.form-group.has-error .field-error {
    display: block;
}

@keyframes popup-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.popup-submit.shake {
    animation: popup-shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* File upload zone */
input[type="file"].popup-file-input {
    display: none;
}

.upload-zone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1.5px dashed rgba(164, 113, 73, 0.3);
    border-radius: 10px;
    background: #FAFAFA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: var(--accent);
    background: rgba(164, 113, 73, 0.04);
}

.upload-zone.has-files {
    border-color: var(--accent);
    border-style: solid;
    background: rgba(164, 113, 73, 0.04);
}

.upload-zone svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

.upload-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.upload-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-body);
}

.upload-hint {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.upload-file-count {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    font-family: var(--font-display);
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.65rem;
    margin-left: 4px;
}

.popup-submit {
    margin-top: 5px;
    background: var(--text-main);
    color: #FFF;
    padding: 15px;
    /* Reduced padding */
    border: none;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-smooth);
}

.popup-submit:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(164, 113, 73, 0.2);
}

.submit-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.popup-submit:hover .submit-arrow {
    transform: translateX(5px);
}

.popup-legal {
    font-size: 0.7rem;
    color: #AAA;
    text-align: center;
    margin-top: 10px;
}

/* Thank You State */
.thankyou-panel {
    text-align: center;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.thankyou-panel.active {
    display: flex;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ty-icon-wrap {
    color: var(--accent);
    margin-bottom: 30px;
}

.ty-check {
    width: 80px;
    height: 80px;
}

.ty-circle {
    stroke-dasharray: 151;
    stroke-dashoffset: 151;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.ty-tick {
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

.ty-divider {
    width: 40px;
    height: 2px;
    background: var(--accent-light);
    margin: 30px auto;
}

.ty-back-btn {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    width: auto;
    padding: 15px 35px;
}

.ty-back-btn:hover {
    background: var(--text-main);
    color: #FFF;
}

/* Mobile Adjustments for Popup */
@media (max-width: 768px) {
    .popup-card.landscape {
        flex-direction: column;
        width: 92%;
        min-height: auto;
        max-height: 85vh;
    }

    .popup-image {
        flex: 0 0 150px;
    }

    .image-overlay-text {
        bottom: 20px;
        left: 20px;
    }

    .overlay-brand {
        font-size: 0.9rem;
    }

    .popup-content {
        padding: 35px 20px 25px;
    }

    .popup-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .popup-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 16px;
    }

    .popup-submit {
        padding: 16px;
        font-size: 0.75rem;
    }

    .popup-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .popup-eyebrow {
        letter-spacing: 0.2em;
        font-size: 0.6rem;
    }

    .ty-check {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .popup-card.landscape {
        width: 95%;
    }

    .popup-image {
        display: none;
        /* Hide image on very small screens to save space */
    }

    .popup-content {
        padding: 40px 15px 25px;
    }

    .popup-title {
        font-size: 1.3rem;
    }
}