/*
Theme Name: Texas Wood Goods
Theme URI: https://texaswoodgoods.com
Author: Texas Wood Goods
Author URI: https://texaswoodgoods.com
Description: An elegant, refined theme for Texas Wood Goods - a handcrafted woodworking company. Features sophisticated typography, warm neutral tones, and a luxurious aesthetic perfect for artisan businesses.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: texas-wood-goods
Tags: custom-logo, custom-menu, featured-images, theme-options, translation-ready, one-column, two-columns, custom-background, custom-header

Texas Wood Goods WordPress Theme, Copyright 2024 Texas Wood Goods
Texas Wood Goods is distributed under the terms of the GNU GPL
*/

/* ==================== */
/* CSS VARIABLES */
/* ==================== */
:root {
    --color-dark: #1e1c18;
    --color-charcoal: #2c2820;
    --color-brown: #3d3830;
    --color-warm-gray: #5a5248;
    --color-muted: #8a7d6d;
    --color-tan: #a09080;
    --color-light-tan: #c4b8a8;
    --color-cream: #e8e2da;
    --color-off-white: #f5f3f0;
    --color-white: #faf9f7;
    
    --font-display: 'Playfair Display', serif;
    --font-serif: 'EB Garamond', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;
    
    --container-width: 1200px;
    --container-padding: 50px;
}

/* ==================== */
/* RESET & BASE */
/* ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-white);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.03;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

/* ==================== */
/* TYPOGRAPHY */
/* ==================== */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--color-tan);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-light-tan);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-charcoal);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-muted);
}

/* ==================== */
/* LAYOUT */
/* ==================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ==================== */
/* HEADER & NAVIGATION */
/* ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
}

.site-header.header-dark {
    background: transparent;
}

.site-header.header-dark.scrolled {
    background: rgba(250, 249, 247, 0.95);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
}

.site-logo .star-mark {
    width: 32px;
    height: 32px;
    fill: var(--color-light-tan);
    transition: fill 0.3s ease;
}

.header-dark .site-logo .star-mark {
    fill: var(--color-light-tan);
}

.scrolled .site-logo .star-mark {
    fill: var(--color-brown);
}

.site-logo .text-group {
    padding-left: 18px;
    border-left: 1px solid var(--color-warm-gray);
    transition: border-color 0.3s ease;
}

.scrolled .site-logo .text-group {
    border-left-color: var(--color-light-tan);
}

.site-logo .brand-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.header-dark .site-logo .brand-name {
    color: var(--color-cream);
}

.scrolled .site-logo .brand-name {
    color: var(--color-charcoal);
}

.site-logo .brand-tag {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
}

.main-navigation a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.header-dark .main-navigation a {
    color: var(--color-cream);
}

.scrolled .main-navigation a {
    color: var(--color-brown);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-light-tan);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--color-cream);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.scrolled .menu-toggle span {
    background: var(--color-brown);
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero-section {
    min-height: 100vh;
    background: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(196, 184, 168, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(160, 144, 128, 0.06) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Logo Frame (Variation D) */
.hero-logo-frame {
    position: relative;
    padding: 45px 60px;
    border: 1px solid var(--color-warm-gray);
    display: inline-block;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-logo-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--color-brown);
}

.hero-logo-frame .side-star {
    position: absolute;
    width: 12px;
    height: 12px;
    fill: var(--color-warm-gray);
}

.hero-logo-frame .side-star.left {
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-logo-frame .side-star.right {
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-logo-frame .content {
    text-align: center;
}

.hero-logo-frame .flourish {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-logo-frame .flourish-dot {
    width: 3px;
    height: 3px;
    background: var(--color-muted);
    border-radius: 50%;
}

.hero-logo-frame .flourish-line {
    width: 25px;
    height: 1px;
    background: var(--color-warm-gray);
}

.hero-logo-frame .top-label,
.hero-logo-frame .bottom-label {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

.hero-logo-frame .top-label {
    margin: 14px 0 10px;
}

.hero-logo-frame .bottom-label {
    margin: 10px 0 14px;
}

.hero-logo-frame .main-name {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.08em;
}

.hero-tagline {
    margin-top: 50px;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

.hero-tagline p {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-tan);
    letter-spacing: 0.03em;
    font-style: italic;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color-warm-gray), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 0.8; height: 80px; }
}

/* ==================== */
/* ABOUT SECTION */
/* ==================== */
.about-section {
    padding: 140px 50px;
    background: var(--color-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-warm-gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--color-off-white);
}

.signature-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-brown);
}

.signature-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-tan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 5px;
}

.about-image {
    position: relative;
}

.about-image .image-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.about-image .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image .image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
    pointer-events: none;
}

.about-image .accent-frame {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-light-tan);
    z-index: -1;
}

/* ==================== */
/* PRODUCTS SECTION */
/* ==================== */
.products-section {
    padding: 120px 50px;
    background: var(--color-off-white);
}

.products-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.product-card {
    background: var(--color-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 40, 32, 0.1);
}

.product-card .product-image {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,0.5);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s ease;
}

.product-card:hover .product-image::before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.product-info {
    padding: 28px 25px;
    text-align: center;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--color-brown);
}

.product-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-muted);
    font-style: italic;
}

.product-price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-brown);
    margin-top: 15px;
    letter-spacing: 0.05em;
}

/* ==================== */
/* TESTIMONIAL SECTION */
/* ==================== */
.testimonial-section {
    padding: 140px 50px;
    background: var(--color-charcoal);
    text-align: center;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(196, 184, 168, 0.05) 0%, transparent 70%);
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonial-star {
    width: 30px;
    height: 30px;
    fill: var(--color-warm-gray);
    margin-bottom: 40px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
    margin-bottom: 40px;
}

.testimonial-author {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--color-tan);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* ==================== */
/* CONTACT SECTION */
/* ==================== */
.contact-section {
    padding: 120px 50px;
    background: var(--color-white);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 30px;
}

.contact-info > p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details li {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-warm-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details .label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--color-tan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    min-width: 80px;
}

.contact-form-wrapper {
    padding: 50px;
    background: var(--color-off-white);
}

/* ==================== */
/* FORMS */
/* ==================== */
.twg-form .form-group {
    margin-bottom: 25px;
}

.twg-form label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--color-tan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.twg-form input[type="text"],
.twg-form input[type="email"],
.twg-form input[type="tel"],
.twg-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid var(--color-light-tan);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-charcoal);
    transition: border-color 0.3s ease;
}

.twg-form input:focus,
.twg-form textarea:focus {
    outline: none;
    border-bottom-color: var(--color-brown);
}

.twg-form textarea {
    resize: none;
    min-height: 100px;
}

.twg-form .submit-btn,
.twg-button {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--color-charcoal);
    border: none;
    padding: 18px 45px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.twg-form .submit-btn:hover,
.twg-button:hover {
    background: var(--color-brown);
}

/* ==================== */
/* FOOTER */
/* ==================== */
.site-footer {
    padding: 80px 50px 50px;
    background: var(--color-dark);
    text-align: center;
}

/* Footer Logo Frame */
.footer-logo-frame {
    position: relative;
    padding: 35px 50px;
    border: 1px solid var(--color-warm-gray);
    display: inline-block;
    margin-bottom: 50px;
}

.footer-logo-frame::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid var(--color-brown);
}

.footer-logo-frame .side-star {
    position: absolute;
    width: 10px;
    height: 10px;
    fill: var(--color-warm-gray);
}

.footer-logo-frame .side-star.left {
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-logo-frame .side-star.right {
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.footer-logo-frame .main-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.08em;
}

/* Footer Navigation */
.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-navigation a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--color-tan);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--color-brown);
}

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: 0.1em;
}

/* ==================== */
/* WOOCOMMERCE SUPPORT */
/* ==================== */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.woocommerce ul.products li.product {
    background: var(--color-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin: 0;
    padding: 0;
    float: none;
    width: 100%;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 40, 32, 0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-charcoal);
    padding: 0;
}

.woocommerce ul.products li.product .price {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-brown);
}

.woocommerce ul.products li.product .button {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--color-charcoal);
    border-radius: 0;
    padding: 15px 30px;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--color-brown);
}

/* ==================== */
/* PAGE TEMPLATES */
/* ==================== */
.page-header {
    padding: 180px 50px 100px;
    background: var(--color-charcoal);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.page-header .page-description {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-tan);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 50px;
    background: var(--color-white);
}

.page-content .entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content .entry-content p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-warm-gray);
    line-height: 1.9;
    margin-bottom: 25px;
}

.page-content .entry-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-charcoal);
    margin: 50px 0 25px;
}

.page-content .entry-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin: 40px 0 20px;
}

/* ==================== */
/* BLOG */
/* ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 50px;
}

.blog-card {
    background: var(--color-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 40, 32, 0.08);
}

.blog-card .post-thumbnail {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.blog-card .post-content {
    padding: 30px;
}

.blog-card .post-meta {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    color: var(--color-tan);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-card .post-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-charcoal);
    margin-bottom: 15px;
}

.blog-card .post-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card .post-title a:hover {
    color: var(--color-brown);
}

.blog-card .post-excerpt {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Single Post */
.single-post-header {
    padding: 180px 50px 80px;
    background: var(--color-charcoal);
    text-align: center;
}

.single-post-header .post-meta {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-tan);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.single-post-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-cream);
    max-width: 800px;
    margin: 0 auto;
}

.single-post-content {
    padding: 80px 50px;
    background: var(--color-white);
}

.single-post-content .entry-content {
    max-width: 750px;
    margin: 0 auto;
}

/* ==================== */
/* WIDGETS */
/* ==================== */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--color-tan);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-off-white);
}

.widget ul {
    list-style: none;
}

.widget ul li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-warm-gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-off-white);
}

.widget ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: var(--color-brown);
}

/* ==================== */
/* UTILITY CLASSES */
/* ==================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.pt-0 { padding-top: 0; }
.pt-40 { padding-top: 40px; }
.pt-80 { padding-top: 80px; }

.pb-0 { padding-bottom: 0; }
.pb-40 { padding-bottom: 40px; }
.pb-80 { padding-bottom: 80px; }

/* ==================== */
/* RESPONSIVE */
/* ==================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .products-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        padding-right: 0;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 25px;
    }

    .site-header {
        padding: 15px 25px;
    }

    .main-navigation {
        display: none;
    }

    .main-navigation.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-charcoal);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .main-navigation.active ul {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .main-navigation.active a {
        font-size: 1.2rem;
        color: var(--color-cream);
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-logo-frame {
        padding: 30px 40px;
    }

    .hero-logo-frame .main-name {
        font-size: 1.8rem;
    }

    .products-grid,
    .woocommerce ul.products,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .section-title,
    .page-header h1 {
        font-size: 2rem;
    }

    .testimonial-quote {
        font-size: 1.5rem;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .about-section,
    .products-section,
    .contact-section,
    .testimonial-section {
        padding: 80px 25px;
    }
}

@media (max-width: 480px) {
    .hero-logo-frame {
        padding: 25px 30px;
    }

    .hero-logo-frame .main-name {
        font-size: 1.4rem;
    }

    .hero-tagline p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}
