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

        :root {
            --warm-cream: #FAF7F2;
            --soft-linen: #F5F0E8;
            --card-bg: #FFFDF9;
            --deep-espresso: #1C1917;
            --warm-charcoal: #292524;
            --antique-gold: #B8860B;
            --gold-light: #D4A843;
            --deep-emerald: #1B4332;
            --emerald-muted: #2D5A3D;
            --navy: #1E3A5F;
            --rich-red: #8B2500;
            --warm-taupe: #8B7355;
            --muted-sage: #A8B5A0;
            --border-light: rgba(44, 24, 16, 0.08);
            --border-medium: rgba(44, 24, 16, 0.12);
            --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
            --shadow-md: 0 4px 16px rgba(28, 25, 23, 0.08);
            --shadow-lg: 0 8px 32px rgba(28, 25, 23, 0.12);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'DM Sans', -apple-system, sans-serif;
            background: var(--warm-cream);
            color: var(--deep-espresso);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ==================== NAVIGATION ==================== */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 48px;
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 247, 242, 0.92);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-light);
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            width: auto;
            display: block;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--warm-taupe);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: color var(--transition-base);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--antique-gold);
            transition: width var(--transition-base);
        }

        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--deep-espresso); }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--deep-espresso);
            margin: 5px 0;
            transition: var(--transition-base);
        }

        /* ==================== BREADCRUMB ==================== */
        .breadcrumb {
            padding: 24px 48px 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .breadcrumb a {
            color: var(--warm-taupe);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 0.3px;
            transition: color var(--transition-base);
        }

        .breadcrumb a:hover { color: var(--deep-espresso); }

        .breadcrumb .separator {
            margin: 0 10px;
            color: var(--border-medium);
            font-size: 11px;
        }

        .breadcrumb .current {
            color: var(--deep-espresso);
            font-size: 13px;
            font-weight: 500;
        }

        /* ==================== PRODUCT LAYOUT ==================== */
        .product-page {
            max-width: 1400px;
            margin: 0 auto;
            padding: 32px 48px 80px;
        }

        .product-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }

        /* ==================== GALLERY ==================== */
        .gallery {
            position: sticky;
            top: 100px;
        }

        .main-media {
            width: 100%;
            aspect-ratio: 4 / 5;
            background: var(--soft-linen);
            overflow: hidden;
            cursor: zoom-in;
            position: relative;
            margin-bottom: 12px;
        }

        .main-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .main-media:hover img {
            transform: scale(1.03);
        }

        .main-media video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .main-media .video-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px 12px;
            backdrop-filter: blur(4px);
        }

        .thumbnail-strip {
            display: flex;
            gap: 8px;
            overflow-x: auto;
            scrollbar-width: none;
            padding-bottom: 4px;
        }

        .thumbnail-strip::-webkit-scrollbar { display: none; }

        .thumbnail-strip .thumb {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.5;
            transition: all var(--transition-base);
            border: 2px solid transparent;
        }

        .thumbnail-strip .thumb:hover { opacity: 0.8; }

        .thumbnail-strip .thumb.active {
            opacity: 1;
            border-color: var(--antique-gold);
        }

        .thumbnail-strip .thumb-video {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background: var(--warm-charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0.5;
            transition: all var(--transition-base);
            border: 2px solid transparent;
            color: white;
        }

        .thumbnail-strip .thumb-video:hover { opacity: 0.8; }
        .thumbnail-strip .thumb-video.active {
            opacity: 1;
            border-color: var(--antique-gold);
        }

        .thumbnail-strip .thumb-video svg {
            width: 24px;
            height: 24px;
        }

        /* ==================== PRODUCT INFO ==================== */
        .product-info {
            padding-top: 8px;
        }

        .product-info .eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--antique-gold);
            margin-bottom: 12px;
        }

        .product-info h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.75rem, 3vw, 2.5rem);
            font-weight: 400;
            color: var(--deep-espresso);
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .product-info .price-row {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-light);
        }

        .product-info .price {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 500;
            color: var(--deep-espresso);
        }

        .product-info .status-badge {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
        }

        .status-badge.available {
            background: var(--deep-emerald);
            color: white;
        }

        .status-badge.sold {
            background: var(--soft-linen);
            color: var(--warm-taupe);
        }

        /* Description */
        .product-description {
            margin-bottom: 32px;
        }

        .product-description h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--deep-espresso);
            margin-bottom: 12px;
        }

        .product-description .desc-text {
            font-size: 0.95rem;
            color: var(--warm-charcoal);
            line-height: 1.85;
            white-space: pre-wrap;
        }

        /* Specifications */
        .product-specs {
            margin-bottom: 32px;
        }

        .product-specs h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 500;
            color: var(--deep-espresso);
            margin-bottom: 16px;
        }

        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .spec-item {
            padding: 14px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .spec-item:nth-child(odd) { padding-right: 24px; }
        .spec-item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--border-light); }

        .spec-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--warm-taupe);
            margin-bottom: 4px;
        }

        .spec-value {
            font-size: 0.95rem;
            color: var(--deep-espresso);
        }

        .spec-value .ai-badge {
            display: inline-block;
            font-size: 10px;
            color: var(--warm-taupe);
            background: var(--soft-linen);
            padding: 1px 6px;
            margin-left: 6px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Inquiry Section */
        .inquiry-section {
            background: var(--soft-linen);
            padding: 32px;
            margin-bottom: 32px;
        }

        .inquiry-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--deep-espresso);
            margin-bottom: 8px;
        }

        .inquiry-section .inquiry-subtitle {
            font-size: 0.9rem;
            color: var(--warm-taupe);
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--warm-taupe);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            background: white;
            border: 1px solid var(--border-medium);
            font-family: inherit;
            font-size: 0.9rem;
            color: var(--deep-espresso);
            outline: none;
            transition: border-color var(--transition-base);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--antique-gold);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            width: 100%;
            padding: 16px 32px;
            background: var(--deep-emerald);
            color: white;
            border: none;
            font-family: inherit;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all var(--transition-base);
        }

        .submit-btn:hover {
            background: var(--emerald-muted);
        }

        .submit-btn:disabled {
            background: var(--warm-taupe);
            cursor: not-allowed;
        }

        /* Buy Now */
        .buy-now-section {
            margin-bottom: 24px;
        }

        .buy-now-btn {
            display: block;
            width: 100%;
            padding: 18px 32px;
            background: #1a1a1a;
            color: white;
            text-align: center;
            text-decoration: none;
            font-family: inherit;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: background 0.2s ease;
            box-sizing: border-box;
        }

        .buy-now-btn:hover {
            background: #333;
        }

        .buy-now-note {
            text-align: center;
            font-size: 11px;
            color: var(--warm-taupe);
            margin-top: 8px;
            letter-spacing: 0.5px;
        }

        .action-divider {
            display: flex;
            align-items: center;
            margin: 28px 0;
            color: var(--warm-taupe);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .action-divider::before,
        .action-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #ddd6ca;
        }

        .action-divider span {
            padding: 0 16px;
        }

        .form-message {
            padding: 12px 16px;
            margin-top: 16px;
            font-size: 0.9rem;
            font-weight: 500;
            display: none;
        }

        .form-message.success {
            background: rgba(27, 67, 50, 0.08);
            color: var(--deep-emerald);
            display: block;
        }

        .form-message.error {
            background: rgba(139, 37, 0, 0.08);
            color: var(--rich-red);
            display: block;
        }

        .sold-notice {
            padding: 24px 32px;
            background: var(--soft-linen);
            border-left: 3px solid var(--warm-taupe);
            margin-bottom: 32px;
        }

        .sold-notice p {
            font-size: 0.95rem;
            color: var(--warm-charcoal);
            line-height: 1.7;
        }

        .sold-notice a {
            color: var(--antique-gold);
            text-decoration: none;
            font-weight: 500;
        }

        .sold-notice a:hover { text-decoration: underline; }

        /* ==================== RELATED ITEMS ==================== */
        .related-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px 80px;
        }

        .related-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }

        .related-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--deep-espresso);
        }

        .related-section .view-all {
            font-size: 13px;
            font-weight: 500;
            color: var(--antique-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: color var(--transition-base);
        }

        .related-section .view-all:hover { color: var(--gold-light); }

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

        .related-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .related-card .image-wrapper {
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background: var(--soft-linen);
            margin-bottom: 12px;
        }

        .related-card .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .related-card:hover .image-wrapper img {
            transform: scale(1.04);
        }

        .related-card .related-title {
            font-family: 'Playfair Display', serif;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--deep-espresso);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card .related-price {
            font-size: 0.85rem;
            color: var(--warm-charcoal);
        }

        /* ==================== LOADING ==================== */
        .loading {
            text-align: center;
            padding: 120px 20px;
            color: var(--warm-taupe);
        }

        .loading .spinner {
            width: 32px;
            height: 32px;
            border: 2px solid var(--border-medium);
            border-top-color: var(--antique-gold);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto 16px;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ==================== LIGHTBOX ==================== */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            cursor: zoom-out;
        }

        .lightbox.open {
            display: flex;
        }

        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 24px;
            right: 24px;
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.7;
            transition: opacity var(--transition-base);
        }

        .lightbox-close:hover { opacity: 1; }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 28px;
            padding: 16px 12px;
            cursor: pointer;
            transition: background var(--transition-base);
        }

        .lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
        .lightbox-prev { left: 16px; }
        .lightbox-next { right: 16px; }

        /* ==================== FOOTER ==================== */
        footer {
            background: var(--warm-charcoal);
            color: rgba(255, 255, 255, 0.6);
            padding: 48px;
            text-align: center;
        }

        footer .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            color: white;
            margin-bottom: 16px;
        }

        footer .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            list-style: none;
            margin-bottom: 24px;
        }

        footer .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 13px;
            letter-spacing: 0.5px;
            transition: color var(--transition-base);
        }

        footer .footer-links a:hover { color: white; }

        footer .copyright {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.35);
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            nav { padding: 16px 24px; }
            .breadcrumb { padding: 20px 24px 0; }
            .product-page { padding: 24px 24px 64px; }
            .product-layout { gap: 40px; }
            .related-section { padding: 0 24px 64px; }
            .related-grid { grid-template-columns: repeat(3, 1fr); }
            footer { padding: 36px 24px; }
        }

        @media (max-width: 768px) {
            nav { height: 52px; padding: 0 16px; overflow: hidden; }
            .logo { height: 52px; overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 36px; max-height: 36px; width: auto; max-width: 140px; }

            .nav-links { display: none; }
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 52px;
                left: 0;
                right: 0;
                background: rgba(250, 247, 242, 0.98);
                backdrop-filter: blur(20px);
                padding: 24px 16px;
                gap: 0;
                border-bottom: 1px solid var(--border-light);
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
                z-index: 200;
            }
            .nav-links.open li { border-bottom: 1px solid var(--border-light); }
            .nav-links.open li:last-child { border-bottom: none; }
            .nav-links.open a { display: block; padding: 14px 0; font-size: 14px; }
            .nav-toggle {
                display: block;
                flex-direction: column;
                gap: 5px;
                cursor: pointer;
                padding: 6px;
                background: none;
                border: none;
                border-radius: 4px;
                min-width: 44px;
                min-height: 44px;
                align-items: center;
                justify-content: center;
            }
            .nav-toggle span {
                display: block;
                width: 22px;
                height: 2px;
                background: #333;
            }

            .breadcrumb { padding: 14px 16px 0; font-size: 12px; }
            .product-page { padding: 16px 16px 40px; }

            .product-layout {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .gallery { position: static; top: auto; }

            .main-media { margin-bottom: 10px; }
            .thumbnail-strip .thumb { width: 60px; height: 60px; }
            .thumbnail-strip .thumb-video { width: 60px; height: 60px; }

            .product-info { padding-top: 4px; }
            .product-info .eyebrow { font-size: 10px; }
            .product-info h1 { font-size: 1.3rem; margin-bottom: 16px; }
            .product-info .price { font-size: 1.4rem; }
            .product-info .price-row { margin-bottom: 16px; padding-bottom: 16px; gap: 12px; }
            .product-description .desc-text { font-size: 0.85rem; }

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

            .spec-grid { grid-template-columns: 1fr; }
            .spec-item:nth-child(even) { padding-left: 0; border-left: none; }
            .spec-item:nth-child(odd) { padding-right: 0; }
            .spec-label { font-size: 10px; }
            .spec-value { font-size: 0.85rem; }

            .inquiry-section { padding: 24px; }
            .inquiry-section h2 { font-size: 1.1rem; }
            .form-group label { font-size: 10px; }
            .form-group input,
            .form-group textarea { padding: 10px 12px; font-size: 0.85rem; }
            .submit-btn { padding: 14px 16px; font-size: 12px; }

            .buy-now-btn { padding: 16px 20px; font-size: 12px; }
            .buy-now-note { font-size: 10px; }

            .related-section { padding: 0 16px 40px; }
            .related-section h2 { font-size: 1.3rem; }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .related-card .related-title { font-size: 0.8rem; }
            .related-card .related-price { font-size: 0.75rem; }

            footer { padding: 28px 16px; }
            footer .footer-links { flex-wrap: wrap; gap: 12px; }
        }

        @media (max-width: 425px) {
            body { font-size: 13px; }

            nav { height: 48px; padding: 0 12px; overflow: hidden; }
            .logo { height: 48px; overflow: hidden; display: flex; align-items: center; }
            .logo img { height: 30px; max-height: 30px; width: auto; max-width: 120px; }

            .breadcrumb { padding: 10px 12px 0; font-size: 11px; }
            .breadcrumb .separator { margin: 0 6px; font-size: 10px; }

            .product-page { padding: 12px 12px 32px; }

            .product-layout { gap: 20px; }

            .main-media { aspect-ratio: 3 / 4; margin-bottom: 8px; }
            .thumbnail-strip { gap: 6px; }
            .thumbnail-strip .thumb { width: 50px; height: 50px; }
            .thumbnail-strip .thumb-video { width: 50px; height: 50px; font-size: 20px; }

            .product-info h1 { font-size: 1.15rem; margin-bottom: 12px; }
            .product-info .eyebrow { font-size: 9px; margin-bottom: 8px; }
            .product-info .price { font-size: 1.25rem; }
            .product-info .price-row { margin-bottom: 12px; padding-bottom: 12px; }
            .status-badge { font-size: 9px; padding: 4px 12px; }

            .product-description h2 { font-size: 1rem; margin-bottom: 10px; }
            .product-description .desc-text { font-size: 0.8rem; line-height: 1.6; }

            .product-specs h2 { font-size: 1rem; margin-bottom: 12px; }
            .spec-item { padding: 10px 0; }
            .spec-label { font-size: 9px; }
            .spec-value { font-size: 0.8rem; }

            .inquiry-section { padding: 20px; margin-bottom: 20px; }
            .inquiry-section h2 { font-size: 1rem; }
            .inquiry-section .inquiry-subtitle { font-size: 0.8rem; }
            .form-group { margin-bottom: 12px; }
            .form-group label { font-size: 9px; margin-bottom: 6px; }
            .form-group input,
            .form-group textarea { padding: 10px 10px; font-size: 14px; } /* 14px prevents zoom on iOS */
            .submit-btn { padding: 14px 12px; font-size: 11px; min-height: 44px; }

            .buy-now-btn { padding: 14px 12px; font-size: 11px; min-height: 44px; }
            .buy-now-note { font-size: 9px; margin-top: 6px; }

            .action-divider { margin: 16px 0; }

            .sold-notice { padding: 16px; border-left-width: 2px; }
            .sold-notice p { font-size: 0.8rem; }

            .related-section { padding: 0 12px 32px; }
            .related-section h2 { font-size: 1.15rem; }
            .related-grid { gap: 10px; }
            .related-card .related-title { font-size: 0.75rem; }

            .guides-section { padding: 0 12px 40px; }
            .guides-grid { gap: 12px; }
            .guide-card { padding: 20px; }
            .guide-card-title { font-size: 0.9rem; }
            .guide-card-desc { font-size: 0.78rem; }

            footer { padding: 16px 12px; }
            footer .footer-brand { font-size: 14px; }
            footer .footer-links { gap: 8px; }
            footer .footer-links a { font-size: 10px; }
        }

        /* ==================== RELATED GUIDES ==================== */
        .guides-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px 80px;
        }

        .guides-section .section-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 32px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-light);
        }

        .guides-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--deep-espresso);
        }

        .guides-section .view-all {
            font-size: 13px;
            font-weight: 500;
            color: var(--antique-gold);
            text-decoration: none;
            letter-spacing: 0.5px;
            transition: color var(--transition-base);
        }

        .guides-section .view-all:hover { color: var(--gold-light); }

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

        .guide-card {
            display: block;
            text-decoration: none;
            color: inherit;
            background: var(--soft-linen);
            padding: 28px;
            transition: background var(--transition-base);
        }

        .guide-card:hover { background: #ede8df; }

        .guide-card-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--antique-gold);
            margin-bottom: 12px;
        }

        .guide-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--deep-espresso);
            line-height: 1.35;
            margin-bottom: 12px;
        }

        .guide-card-desc {
            font-size: 0.85rem;
            color: var(--warm-taupe);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .guide-card-link {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--deep-espresso);
            border-bottom: 1px solid var(--antique-gold);
            padding-bottom: 2px;
            transition: border-color var(--transition-base);
        }

        .guide-card:hover .guide-card-link { border-color: var(--deep-espresso); }

        @media (max-width: 1024px) {
            .guides-section { padding: 0 24px 64px; }
            .guides-grid { gap: 16px; }
        }

        @media (max-width: 768px) {
            .guides-section { padding: 0 16px 48px; }
            .guides-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .guide-card { padding: 22px; }
        }

        @media (max-width: 480px) {
            .guides-grid { grid-template-columns: 1fr; }
        }
