/*
Theme Name: Farmhouse Pet Supply
Theme URI: https://farmhousepetsupply.com
Author: Farmhouse Pet Supply
Author URI: https://farmhousepetsupply.com
Description: Premium custom theme for Farmhouse Pet Supply - Family tested, dog approved.
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: farmhouse-pet-supply
*/

/* ==========================================================================
   CSS Custom Properties - Design System
   ========================================================================== */

:root {
    /* Colors */
    --color-background: #FAF9F6;
    --color-text-primary: #2C2E30;
    --color-brand-green: #2D5530;
    --color-brand-amber: #D4A373;
    --color-brand-amber-hover: #C4935F;
    --color-muted-grey: #9A9A9A;
    --color-accent-light: #F5F1EB;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Glassmorphism */
    --glass-bg: rgba(249, 247, 242, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 15px;

    /* Typography - Premium Editorial */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;

    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    --line-height-base: 1.8;
    --line-height-tight: 1.15;
    --line-height-relaxed: 1.9;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

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

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: -0.01em;
}

h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: var(--line-height-tight);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--font-size-5xl);
    }

    h2 {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--font-size-6xl);
    }
}

p {
    margin-bottom: var(--spacing-md);
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--spacing-xl);
        padding-right: var(--spacing-xl);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--spacing-4xl);
        padding-bottom: var(--spacing-4xl);
    }
}

.section--cream {
    background-color: var(--color-accent-light);
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background-color: var(--color-brand-amber);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-brand-amber-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--color-brand-green);
    color: var(--color-white);
}

.btn--secondary:hover {
    background-color: #234426;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-brand-green);
    border: 2px solid var(--color-brand-green);
}

.btn--outline:hover {
    background-color: var(--color-brand-green);
    color: var(--color-white);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--color-background);
    border-bottom: 1px solid #E5E2DB;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
        flex-grow: 1;
        padding-left: 2rem;
    }
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav a:hover {
    color: var(--color-brand-green);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-brand-green);
    transition: width var(--transition-base);
}

.main-nav a:hover::after {
    width: 100%;
}

/* CTA Button */
.cta-button {
    display: none;
    background: var(--color-brand-amber);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
    }
}

.cta-button:hover {
    background: #C49366;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid #E5E2DB;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #E5E2DB;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--color-brand-green);
}

.mobile-nav .mobile-cta {
    display: inline-block;
    background: var(--color-brand-amber);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.mobile-nav .mobile-cta:hover {
    background: #C49366;
    color: #fff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--spacing-2xl) 0;
}

/* Glassmorphism Trust Box */
.trust-box {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    max-width: 600px;
}

@media (min-width: 768px) {
    .trust-box {
        padding: var(--spacing-2xl);
    }
}

.trust-box__tagline {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .trust-box__tagline {
        font-size: var(--font-size-3xl);
    }
}

.trust-box__description {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   Meet the Family Section
   ========================================================================== */

.family-section {
    background-color: var(--color-accent-light);
}

.family-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.family-section__title {
    margin-bottom: var(--spacing-md);
}

.family-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.family-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.family-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.family-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    background-color: var(--color-accent-light);
}

.family-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-card__name {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.family-card__role {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Product Showcase Section
   ========================================================================== */

.products-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    aspect-ratio: 4 / 3;
    background-color: var(--color-accent-light);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card__content {
    padding: var(--spacing-lg);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.product-card__tagline {
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Trust Signals Bar
   ========================================================================== */

.trust-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
    .trust-bar__inner {
        gap: var(--spacing-2xl);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item__icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.footer-brand__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-brand__location {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-brand__location svg {
    width: 16px;
    height: 16px;
}

.footer-column__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

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

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form__input {
    flex: 1;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--color-white);
}

.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form__input:focus {
    outline: none;
    border-color: var(--color-brand-amber);
}

.newsletter-form__btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-brand-amber);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form__btn:hover {
    background-color: var(--color-brand-amber-hover);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-brand-amber);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Product Landing Page
   ========================================================================== */

.product-hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
}

.product-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .product-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-hero__content {
    order: 2;
}

@media (min-width: 1024px) {
    .product-hero__content {
        order: 1;
    }
}

.product-hero__tagline {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-md);
}

.product-hero__title {
    margin-bottom: var(--spacing-md);
}

.product-hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-xl);
}

.product-hero__media {
    order: 1;
}

@media (min-width: 1024px) {
    .product-hero__media {
        order: 2;
    }
}

.product-hero__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Specs Preview Box (Glassmorphism) */
.specs-preview {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.specs-preview__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-md);
}

.specs-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .specs-preview__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-item {
    text-align: center;
}

.spec-item__value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-brand-green);
}

.spec-item__label {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Image Gallery
   ========================================================================== */

.gallery-section {
    background-color: var(--color-accent-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Spec Showdown Comparison Module
   ========================================================================== */

.spec-showdown {
    padding: var(--spacing-3xl) 0;
}

.spec-showdown__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.spec-showdown__title {
    margin-bottom: var(--spacing-sm);
}

.spec-showdown__subtitle {
    color: var(--color-muted-grey);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-text-primary);
}

.comparison-header__item {
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 600;
    color: var(--color-white);
}

.comparison-header__item--ours {
    background-color: var(--color-brand-green);
}

.comparison-header__item--theirs {
    background-color: var(--color-muted-grey);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-accent-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: var(--spacing-lg);
    text-align: center;
}

.comparison-cell__label {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-xs);
}

.comparison-cell__value {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.comparison-cell--ours .comparison-cell__value {
    color: var(--color-brand-green);
    font-size: var(--font-size-2xl);
}

.comparison-cell--theirs .comparison-cell__value {
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    background-color: var(--color-accent-light);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-text-primary);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text-primary);
}

.video-placeholder__play {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-amber);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder__play:hover {
    transform: scale(1.1);
    background-color: var(--color-brand-amber-hover);
}

.video-placeholder__play svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    margin-left: 4px;
}

.video-caption {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   Why Farmhouse Section
   ========================================================================== */

.features-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    border-radius: var(--border-radius-full);
    color: var(--color-brand-green);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    margin-bottom: var(--spacing-sm);
}

.feature-card__description {
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background-color: var(--color-accent-light);
    text-align: center;
}

.cta-section__price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-section__price span {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-muted-grey);
}

.cta-section__button {
    margin-bottom: var(--spacing-lg);
}

.cta-section__guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-brand-green);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.cta-section__guarantee svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
    color: var(--color-brand-amber);
}

.review-card__stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-card__text {
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: var(--color-text-primary);
}

.review-card__author {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.review-card__date {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero-section {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.about-hero-content {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.about-hero-content h1 {
    margin-bottom: var(--spacing-md);
}

.about-hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-muted-grey);
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-story {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.about-story__lead {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
}

.about-story p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
    .about-hero-subtitle {
        font-size: var(--font-size-2xl);
    }

    .about-story__lead {
        font-size: var(--font-size-3xl);
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-green);
}

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

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    border-radius: var(--border-radius-full);
    color: var(--color-brand-green);
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    padding: var(--spacing-xl);
}

.lightbox.is-open {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: var(--font-size-2xl);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-green {
    color: var(--color-brand-green);
}

.text-amber {
    color: var(--color-brand-amber);
}

.text-grey {
    color: var(--color-muted-grey);
}

.bg-cream {
    background-color: var(--color-accent-light);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

/* ==========================================================================
   Premium Authority Overhaul - v2.0
   ========================================================================== */

/* Enhanced Hero Section */
.hero--premium {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero--premium .trust-box {
    max-width: 680px;
    padding: var(--spacing-2xl) var(--spacing-xl);
}

@media (min-width: 768px) {
    .hero--premium .trust-box {
        padding: var(--spacing-3xl);
    }
}

.trust-box__tagline--premium {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .trust-box__tagline--premium {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .trust-box__tagline--premium {
        font-size: var(--font-size-6xl);
    }
}

.trust-box__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    opacity: 0.85;
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
}

/* Spec Showdown Module */
.spec-showdown-home {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-accent-light) 100%);
}

.spec-showdown-home__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.spec-showdown-home__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-lg);
}

.spec-showdown-home__title {
    margin-bottom: var(--spacing-md);
}

.spec-showdown-home__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
}

/* Comparison Box */
.comparison-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-box {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.comparison-box__side {
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.comparison-box__side--ours {
    background-color: var(--color-white);
    border: 3px solid var(--color-brand-green);
    box-shadow: var(--shadow-lg);
}

.comparison-box__side--theirs {
    background-color: var(--color-white);
    border: 2px solid var(--color-muted-grey);
    opacity: 0.8;
}

.comparison-box__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.comparison-box__side--ours .comparison-box__label {
    color: var(--color-brand-green);
}

.comparison-box__side--theirs .comparison-box__label {
    color: var(--color-muted-grey);
}

.comparison-box__value {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .comparison-box__value {
        font-size: var(--font-size-5xl);
    }
}

.comparison-box__side--ours .comparison-box__value {
    color: var(--color-brand-green);
}

.comparison-box__side--theirs .comparison-box__value {
    color: var(--color-muted-grey);
}

.comparison-box__desc {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

.comparison-box__bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: var(--spacing-md);
}

.comparison-box__stat {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-brand-green);
    margin-bottom: var(--spacing-sm);
}

.comparison-box__stat span {
    font-size: var(--font-size-4xl);
}

/* Technical Authority Block */
.technical-block {
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-text-primary);
    color: var(--color-white);
}

.technical-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .technical-block__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.technical-block__content {
    order: 2;
}

@media (min-width: 1024px) {
    .technical-block__content {
        order: 1;
    }
}

.technical-block__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-lg);
}

.technical-block__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.technical-block__text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.technical-block__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.technical-block__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.technical-block__feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
    color: var(--color-brand-green);
}

.technical-block__feature-icon svg {
    width: 24px;
    height: 24px;
}

.technical-block__feature-title {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.technical-block__feature-desc {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

.technical-block__visual {
    order: 1;
}

@media (min-width: 1024px) {
    .technical-block__visual {
        order: 2;
    }
}

.technical-block__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Wisconsin Trust Badge */
.wisconsin-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-white);
    border: 2px solid var(--color-brand-green);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-brand-green);
    margin-top: var(--spacing-xl);
}

.wisconsin-badge svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Family Section */
.family-section--premium {
    position: relative;
}

.family-section--premium .family-section__header {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.family-section__tagline {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* Sticky Header Enhancement */
.site-header--premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.site-header--premium.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-header--premium .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.site-header--premium .site-logo {
    justify-self: center;
    grid-column: 2;
}

.site-header--premium .main-nav {
    justify-self: start;
    grid-column: 1;
}

.site-header--premium .header-cta {
    justify-self: end;
    grid-column: 3;
}

.header-cta__button {
    display: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .header-cta__button {
        display: inline-flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

.header-cta__button:hover {
    background-color: #234426;
    transform: translateY(-1px);
}

/* Body padding for fixed header */
body.has-premium-header {
    padding-top: 80px;
}

/* Footer Technical Specs Menu */
.footer-specs {
    margin-top: var(--spacing-lg);
}

.footer-specs__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer-specs__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-specs__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-specs__link:hover {
    color: var(--color-white);
}

.footer-specs__link svg {
    width: 14px;
    height: 14px;
    color: var(--color-brand-green);
}

/* Premium Section Headers */
.section-header--premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header--premium h2 {
    margin-bottom: var(--spacing-md);
}

.section-header--premium p {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    line-height: var(--line-height-relaxed);
}

/* ==========================================================================
   Premium Footer - 4 Column Layout
   ========================================================================== */

.site-footer--premium {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid--premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-grid--premium {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.site-footer--premium .footer-brand__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.site-footer--premium .footer-brand__location {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer--premium .footer-column__title {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.site-footer--premium .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.site-footer--premium .footer-links a:hover {
    color: var(--color-white);
}

.site-footer--premium .newsletter-form__input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.site-footer--premium .newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer--premium .newsletter-form__btn {
    background-color: var(--color-brand-amber);
    color: var(--color-white);
}

.site-footer--premium .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
}

.site-footer--premium .footer-bottom__copyright {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer--premium .social-links a {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer--premium .social-links a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   Premium Editorial Components - $200K Brand Transformation
   ========================================================================== */

/* Premium Hero Section */
.hero-premium {
    padding: var(--space-16, 7rem) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-premium__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8, 3rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-premium__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-12, 5rem);
    }
}

.hero-premium__content {
    max-width: 650px;
}

.hero-premium__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4, 1rem);
}

.hero-premium__image-frame {
    padding: var(--space-4, 1rem);
    border-radius: var(--radius-xl, 24px);
}

.hero-premium__image-frame img {
    width: 100%;
    border-radius: var(--radius-lg, 16px);
}

/* Products Grid Premium */
.products-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .products-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card-premium {
    overflow: hidden;
    transition: transform var(--duration-base, 300ms) var(--ease-out, ease-out),
                box-shadow var(--duration-base, 300ms) var(--ease-out, ease-out);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl, 0 24px 60px rgba(0, 0, 0, 0.12));
}

.product-card-premium__image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-card-premium__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow, 500ms) var(--ease-out, ease-out);
}

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

.product-card-premium__content {
    padding: var(--space-6, 2rem);
}

.product-card-premium__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-xl, 1.25rem);
    font-weight: 700;
    margin-bottom: var(--space-2, 0.5rem);
}

.product-card-premium__tagline {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-muted, #6B7280);
    margin-bottom: var(--space-4, 1rem);
}

.product-card-premium__price {
    font-weight: 600;
    color: var(--color-forest, #2D5530);
    margin-bottom: var(--space-5, 1.5rem);
}

/* Pack Grid */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6, 2rem);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pack-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Trust Bar Premium */
.trust-bar-premium {
    background: var(--color-canvas, #FAF9F6);
    border-top: 1px solid var(--color-light-grey, #E5E2DB);
    border-bottom: 1px solid var(--color-light-grey, #E5E2DB);
    padding: var(--space-8, 3rem) 0;
}

.trust-bar-premium__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .trust-bar-premium__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3, 0.75rem);
    text-align: center;
}

.trust-item-premium__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-full, 9999px);
}

.trust-item-premium__icon svg {
    width: 24px;
    height: 24px;
}

.trust-item-premium__text {
    font-size: var(--text-sm, 0.875rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2E30);
}

/* About Hero Premium */
.about-hero-premium {
    padding: var(--space-20, 9rem) 0 var(--space-12, 5rem);
    text-align: center;
}

.about-hero-premium__content {
    max-width: 900px;
    margin: 0 auto;
}

/* Founders Section */
.founders-image-frame {
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-xl, 0 24px 60px rgba(0, 0, 0, 0.12));
}

.founders-image {
    width: 100%;
    height: auto;
    display: block;
}

.founders-letter {
    padding: var(--space-6, 2rem) 0;
}

@media (min-width: 1024px) {
    .founders-letter {
        padding: var(--space-8, 3rem);
    }
}

.founders-letter__content p {
    margin-bottom: var(--space-5, 1.5rem);
}

.founders-signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1, 0.25rem);
}

/* Testers Grid */
.testers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .testers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tester-card {
    overflow: hidden;
    transition: transform var(--duration-base, 300ms) var(--ease-out, ease-out);
}

.tester-card:hover {
    transform: translateY(-4px);
}

.tester-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.tester-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tester-card__content {
    padding: var(--space-6, 2rem);
}

.tester-card__name {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-2xl, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--space-1, 0.25rem);
}

.tester-card__role {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-forest, #2D5530);
    font-weight: 600;
    margin-bottom: var(--space-5, 1.5rem);
}

.tester-card__specs {
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 0.75rem);
    padding-top: var(--space-4, 1rem);
    border-top: 1px solid var(--color-light-grey, #E5E2DB);
}

.tester-card__spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
}

.tester-card__spec::before {
    content: attr(data-spec);
    position: absolute;
    left: 0;
    top: -14px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--color-forest, #2D5530);
    opacity: 0.5;
}

.tester-card__spec-value {
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.tester-card__spec-label {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-muted, #6B7280);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: var(--space-8, 3rem) var(--space-6, 2rem);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-lg, 16px);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
}

.value-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-xl, 1.25rem);
    font-weight: 700;
    margin-bottom: var(--space-4, 1rem);
}

.value-card__text {
    font-size: var(--text-base, 1rem);
    color: var(--color-muted, #6B7280);
    line-height: 1.7;
}

/* Location Card */
.location-card {
    padding: var(--space-8, 3rem);
    text-align: center;
}

.location-card__map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4, 1rem);
    padding-bottom: var(--space-6, 2rem);
    border-bottom: 1px solid var(--color-light-grey, #E5E2DB);
    margin-bottom: var(--space-6, 2rem);
}

.location-card__pin {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-full, 9999px);
}

.location-card__pin svg {
    width: 28px;
    height: 28px;
}

.location-card__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 0.75rem);
}

.location-card__stat-value {
    font-family: var(--font-mono, monospace);
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-charcoal, #2C2E30);
}

/* ==========================================================================
   HIGH-END EDITORIAL OVERHAUL - "Modern Farmhouse Luxury"
   ========================================================================== */

/* 1. GLOBAL CSS REFINEMENT
   ========================================================================== */

/* Rich off-white/cream background */
html {
    background-color: #FAF9F6;
}

/* Typography: Headlines (Lora) */
h1, .display-hero {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-text-primary);
}

/* Typography: Body (Inter) */
body {
    font-family: var(--font-body);
    line-height: 1.8;
    letter-spacing: 0.01em;
    background-color: #FAF9F6;
}

/* Glassmorphism Panel */
.glass-panel {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(250, 249, 246, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-xl);
}

/* 2. HOMEPAGE CINEMATIC HERO
   ========================================================================== */

.hero-cinematic {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 0 clamp(24px, 5vw, 80px);
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAF9F6 0%, #F0EDE6 50%, #FAF9F6 100%);
}

.hero-cinematic__content {
    grid-column: 2 / 6;
    z-index: 2;
}

.hero-cinematic__glass {
    padding: clamp(2rem, 5vw, 4rem);
}

.hero-cinematic__tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1.5rem;
}

.hero-cinematic__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-cinematic__headline .accent {
    color: var(--color-brand-green);
    font-weight: 800;
}

.hero-cinematic__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(44, 46, 48, 0.75);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cinematic__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cinematic__visual {
    grid-column: 7 / 13;
    position: relative;
    z-index: 1;
}

.hero-cinematic__image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-cinematic__image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-cinematic {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 6rem 24px;
    }

    .hero-cinematic__content {
        grid-column: 1;
        order: 2;
    }

    .hero-cinematic__visual {
        grid-column: 1;
        order: 1;
        margin-bottom: 2rem;
    }
}

/* 3. TECHNICAL BLUEPRINT SECTION
   ========================================================================== */

.blueprint-section {
    background: var(--color-text-primary);
    padding: clamp(4rem, 10vh, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.blueprint-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(45, 85, 48, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(45, 85, 48, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    position: relative;
}

.blueprint-grid__header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 4rem;
}

.blueprint-grid__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-amber);
    margin-bottom: 1rem;
}

.blueprint-grid__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1rem;
}

.blueprint-grid__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.blueprint-grid__image {
    grid-column: 1 / 8;
    position: relative;
}

.blueprint-grid__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blueprint-grid__card {
    grid-column: 6 / 11;
    grid-row: 2;
    position: relative;
    z-index: 2;
    margin-top: -120px;
}

.blueprint-card {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.blueprint-card__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1rem;
}

.blueprint-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.blueprint-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blueprint-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 85, 48, 0.05);
    border-radius: 12px;
    position: relative;
}

.blueprint-stat--hero {
    background: var(--color-brand-green);
    color: white;
}

.blueprint-stat__value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.blueprint-stat--hero .blueprint-stat__value {
    color: white;
}

.blueprint-stat__label {
    font-size: 0.8rem;
    color: rgba(44, 46, 48, 0.6);
    font-weight: 500;
}

.blueprint-stat--hero .blueprint-stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Callout Leaders */
.callout-leader {
    position: absolute;
    border-left: 1px solid var(--color-text-primary);
    border-bottom: 1px solid var(--color-text-primary);
    pointer-events: none;
}

.callout-leader::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--color-brand-green);
    border-radius: 50%;
}

.callout-leader__text {
    position: absolute;
    bottom: -8px;
    left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .blueprint-grid__image {
        grid-column: 1 / -1;
    }

    .blueprint-grid__card {
        grid-column: 1 / -1;
        margin-top: -60px;
    }
}

/* 4. WISCONSIN PACK - BROKEN GRID
   ========================================================================== */

.pack-section {
    position: relative;
    padding: clamp(4rem, 10vh, 8rem) 0;
    overflow: hidden;
}

/* Topographical Map Watermark */
.pack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 200 Q100 150 150 200 T250 200 T350 200'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 180 Q120 130 180 180 T280 180 T380 180'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M30 220 Q80 270 140 220 T240 220 T340 220'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M60 160 Q130 110 190 160 T290 160 T390 160'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M40 240 Q90 290 150 240 T250 240 T350 240'/%3E%3Ccircle cx='200' cy='200' r='40' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 600px 600px;
    opacity: 0.03;
    pointer-events: none;
}

.pack-section__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pack-section__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1rem;
}

.pack-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.pack-section__subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-grey);
    max-width: 500px;
    margin: 0 auto;
}

/* Broken Grid Layout */
.broken-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 80px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.broken-grid__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.broken-grid__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.broken-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mike - Large, left offset */
.broken-grid__item--mike {
    grid-column: 1 / 5;
    grid-row: 1 / 4;
}

/* Melissa - Medium, overlaps Mike */
.broken-grid__item--melissa {
    grid-column: 4 / 7;
    grid-row: 2 / 5;
    z-index: 2;
}

/* Riley - Large, right side */
.broken-grid__item--riley {
    grid-column: 7 / 11;
    grid-row: 1 / 4;
}

/* Lexy - Small, bottom overlap */
.broken-grid__item--lexy {
    grid-column: 10 / 13;
    grid-row: 2 / 5;
    z-index: 3;
}

/* Pandora - Medium, bottom center */
.broken-grid__item--pandora {
    grid-column: 5 / 9;
    grid-row: 4 / 7;
    z-index: 4;
}

.broken-grid__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.broken-grid__item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.broken-grid__item-role {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .broken-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .broken-grid__item--mike {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .broken-grid__item--melissa {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .broken-grid__item--riley {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .broken-grid__item--lexy {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .broken-grid__item--pandora {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

/* 5. GLOBAL MOTION - REVEAL ANIMATIONS
   Progressive Enhancement: Content visible by default
   ========================================================================== */

/* Default state: VISIBLE (content always accessible) */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Only hide elements when JS is ready to animate */
.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state after intersection */
.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variants - only apply when JS ready */
.reveal-ready .reveal--left {
    transform: translateX(-30px);
}

.reveal-ready .reveal--left.is-visible {
    transform: translateX(0);
}

.reveal-ready .reveal--right {
    transform: translateX(30px);
}

.reveal-ready .reveal--right.is-visible {
    transform: translateX(0);
}

.reveal-ready .reveal--scale {
    transform: scale(0.95);
}

.reveal-ready .reveal--scale.is-visible {
    transform: scale(1);
}

/* Staggered delays */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* Glass Card Enhancement */
.glass-card {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.glass-card--elevated {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Premium Button Styles */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium--primary {
    background: var(--color-brand-amber);
    color: white;
}

.btn-premium--primary:hover {
    background: #C49366;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.btn-premium--outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-primary);
}

.btn-premium--outline:hover {
    background: var(--color-text-primary);
    color: white;
}

.btn-premium--lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Section Premium Spacing */
.section-premium {
    padding: clamp(4rem, 10vh, 8rem) 0;
}

/* Container Premium */
.container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Container for text-only sections */
.container-text {
    max-width: 720px;
}

/* Split Screen Layout */
.split-screen {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-screen {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .split-screen--asymmetric {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.spec-cell--highlight {
    background: var(--color-brand-green);
}

.spec-cell__value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.spec-cell__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Profile Cards */
.profile-card {
    text-align: center;
}

.profile-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-card__role {
    font-size: 0.8rem;
    color: var(--color-brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-card__stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card__stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.25rem 0;
}

.profile-card__stat-value {
    font-weight: 600;
}

.profile-card__stat-label {
    color: var(--color-muted-grey);
}

/* Wisconsin Badge Premium */
.wisconsin-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--color-brand-green);
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-brand-green);
}

.wisconsin-badge-premium svg {
    width: 20px;
    height: 20px;
}

/* Wisconsin Anchor Pattern */
.wisconsin-anchor {
    position: relative;
}

.wisconsin-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-brand-green);
    border-radius: 2px;
}

/* Text Utilities */
.text-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
}

.text-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(44, 46, 48, 0.75);
}

.text-body-lg {
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-spec {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted-grey);
}

.display-1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.display-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.display-3 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Spacing utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   HOMEPAGE COHERENCE & VERTICAL RHYTHM OVERHAUL
   Editorial Narrative Flow
   ========================================================================== */

/* 1. TIGHTENED VERTICAL RHYTHM
   ========================================================================== */

/* Reduce section spacing from 10vh to 5vh */
.section-premium {
    padding: clamp(3rem, 5vh, 5rem) 0;
}

/* Section overlap utility */
.section-overlap-up {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

/* Hero extends slightly for overlap effect */
.hero-cinematic {
    padding-bottom: 120px;
    margin-bottom: -80px;
}

/* 2. "COMPARISON ENGINE" - Math of Superiority
   12-column layout with floating glass panel
   ========================================================================== */

.comparison-engine {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 clamp(24px, 5vw, 80px);
}

.comparison-engine__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.comparison-engine__image {
    grid-column: 1 / 7;
    grid-row: 1;
    position: relative;
}

.comparison-engine__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    min-height: 500px;
}

.comparison-engine__panel {
    grid-column: 5 / 12;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.comparison-engine__glass {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.comparison-engine__header {
    margin-bottom: 2rem;
}

.comparison-engine__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 0.75rem;
}

.comparison-engine__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* High-contrast comparison display */
.comparison-display {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.comparison-display__side {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
}

.comparison-display__side--ours {
    background: var(--color-brand-green);
    border-radius: 12px 0 0 12px;
    color: white;
}

.comparison-display__side--theirs {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 0 12px 12px 0;
}

/* Vertical divider line */
.comparison-display__divider {
    width: 2px;
    background: var(--color-brand-green);
    position: relative;
}

.comparison-display__divider::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-brand-green);
    border-radius: 4px;
    border: 2px solid var(--color-brand-green);
}

.comparison-display__value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.comparison-display__side--ours .comparison-display__value {
    color: white;
}

.comparison-display__side--theirs .comparison-display__value {
    color: var(--color-muted-grey);
}

.comparison-display__unit {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.comparison-display__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Bottom stats row */
.comparison-engine__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-engine__stat {
    text-align: center;
}

.comparison-engine__stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-green);
}

.comparison-engine__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted-grey);
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .comparison-engine__image {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .comparison-engine__image img {
        border-radius: 20px 20px 0 0;
        min-height: 300px;
    }

    .comparison-engine__panel {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0;
        margin-top: -40px;
    }
}

/* 3. TECHNICAL BLUEPRINT - 40D Foam Section
   Light charcoal background with white leader lines
   ========================================================================== */

.blueprint-beds {
    background: #333;
    padding: clamp(4rem, 8vh, 7rem) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.blueprint-beds::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.blueprint-beds__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    position: relative;
}

.blueprint-beds__content {
    grid-column: 1 / 6;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blueprint-beds__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-amber);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blueprint-beds__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.blueprint-beds__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.blueprint-beds__specs {
    display: flex;
    gap: 2rem;
}

.blueprint-beds__spec {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 120px;
}

.blueprint-beds__spec-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-green);
    margin-bottom: 0.25rem;
}

.blueprint-beds__spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* Product visual with leader lines */
.blueprint-beds__visual {
    grid-column: 6 / 13;
    position: relative;
}

.blueprint-beds__image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blueprint-beds__image-container img {
    width: 100%;
    border-radius: 12px;
}

/* White Leader Lines */
.leader-line {
    position: absolute;
    pointer-events: none;
}

.leader-line__line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    fill: none;
}

.leader-line__dot {
    width: 8px;
    height: 8px;
    background: var(--color-brand-green);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px var(--color-brand-green);
}

.leader-line__label {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: rgba(45, 85, 48, 0.9);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Positioned leader lines */
.leader-line--density {
    top: 30%;
    right: 0;
}

.leader-line--density .leader-line__dot {
    right: 100px;
    top: 0;
}

.leader-line--density .leader-line__label {
    right: -20px;
    top: -10px;
}

.leader-line--support {
    top: 60%;
    right: 0;
}

.leader-line--support .leader-line__dot {
    right: 80px;
    top: 0;
}

.leader-line--support .leader-line__label {
    right: -20px;
    top: -10px;
}

@media (max-width: 1024px) {
    .blueprint-beds__content {
        grid-column: 1 / -1;
        text-align: center;
    }

    .blueprint-beds__specs {
        justify-content: center;
    }

    .blueprint-beds__visual {
        grid-column: 1 / -1;
    }

    .leader-line {
        display: none;
    }
}

/* 4. "THE PACK" - Asymmetrical Scatter
   Different z-index, overlapping photos, parallax
   ========================================================================== */

.pack-scatter {
    position: relative;
    padding: clamp(4rem, 8vh, 7rem) 0;
    overflow: hidden;
}

/* Topographical watermark */
.pack-scatter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 200 Q100 150 150 200 T250 200 T350 200'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 180 Q120 130 180 180 T280 180 T380 180'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M30 220 Q80 270 140 220 T240 220 T340 220'/%3E%3Ccircle cx='200' cy='200' r='60' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 500px 500px;
    opacity: 0.025;
    pointer-events: none;
}

.pack-scatter__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pack-scatter__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    position: relative;
    height: 600px;
}

/* Scattered photo items with parallax data attribute */
.scatter-item {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scatter-item:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.scatter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scatter-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
}

.scatter-item__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.scatter-item__role {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Positioned items with different z-indexes for overlap */
.scatter-item--mike {
    width: 220px;
    height: 280px;
    left: 5%;
    top: 10%;
    z-index: 2;
    transform: rotate(-3deg);
}

.scatter-item--melissa {
    width: 200px;
    height: 260px;
    left: 20%;
    top: 35%;
    z-index: 3;
    transform: rotate(2deg);
}

.scatter-item--riley {
    width: 280px;
    height: 320px;
    left: 38%;
    top: 5%;
    z-index: 5;
    transform: rotate(1deg);
}

.scatter-item--lexy {
    width: 240px;
    height: 300px;
    right: 15%;
    top: 15%;
    z-index: 4;
    transform: rotate(-2deg);
}

.scatter-item--pandora {
    width: 180px;
    height: 220px;
    right: 8%;
    bottom: 10%;
    z-index: 6;
    transform: rotate(4deg);
}

@media (max-width: 768px) {
    .pack-scatter__container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .scatter-item {
        position: relative;
        width: 100% !important;
        height: 200px !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .scatter-item--riley {
        grid-column: 1 / -1;
        height: 250px !important;
    }
}

/* 5. GLOBAL REFINEMENT
   ========================================================================== */

/* Progressive blur on sticky header */
.site-header {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Bold h2 headings with intentional scale */
h2, .display-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Tighter section transitions */
.section-tight {
    padding: clamp(2.5rem, 4vh, 4rem) 0;
}

/* Remove harsh section borders */
.section-premium + .section-premium {
    border-top: none;
}

/* Flowing section backgrounds */
.section-flow {
    position: relative;
}

.section-flow::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    transform: skewY(-1deg);
    z-index: -1;
}

/* ==========================================================================
   6. WOOCOMMERCE PRODUCT TEMPLATE - Technical Blueprint Edition
   ========================================================================== */

/* Product Hero Premium */
.product-hero-premium {
    padding: clamp(6rem, 12vh, 10rem) 0 clamp(3rem, 6vh, 5rem);
}

.product-hero-premium__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8, 3rem);
    align-items: start;
}

@media (min-width: 1024px) {
    .product-hero-premium__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-12, 5rem);
    }
}

/* Product Media */
.product-hero-premium__media {
    position: relative;
}

.product-hero-premium__image-frame {
    position: relative;
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    background: var(--color-white, #fff);
}

.product-hero-premium__badge {
    position: absolute;
    top: var(--space-4, 1rem);
    left: var(--space-4, 1rem);
    background: var(--color-forest, #2D5530);
    color: white;
    padding: var(--space-2, 0.5rem) var(--space-4, 1rem);
    font-family: var(--font-mono, monospace);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
    z-index: 10;
}

.product-hero-premium__image {
    width: 100%;
    height: auto;
    display: block;
}

.product-hero-premium__thumbnails {
    display: flex;
    gap: var(--space-3, 0.75rem);
    margin-top: var(--space-4, 1rem);
}

.product-hero-premium__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.product-hero-premium__thumbnail:hover,
.product-hero-premium__thumbnail.is-active {
    opacity: 1;
}

.product-hero-premium__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Content */
.product-hero-premium__content {
    position: sticky;
    top: 120px;
}

.product-hero-premium__header {
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__price {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-forest, #2D5530);
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__price del {
    color: var(--color-muted, #6B7280);
    font-weight: 400;
    font-size: 0.75em;
}

.product-hero-premium__price ins {
    text-decoration: none;
}

.product-hero-premium__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4, 1rem);
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__actions .cart {
    display: none; /* Hide default WooCommerce cart form, we use custom button */
}

/* Quick Specs */
.product-hero-premium__specs {
    padding: var(--space-6, 2rem);
    margin-bottom: var(--space-6, 2rem);
}

.specs-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4, 1rem);
}

.specs-mini-grid__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1, 0.25rem);
}

.specs-mini-grid__value {
    font-family: var(--font-mono, monospace);
    font-size: var(--text-lg, 1.125rem);
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.specs-mini-grid__label {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Badges */
.product-hero-premium__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4, 1rem);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-muted, #6B7280);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-forest, #2D5530);
}

/* Product Description */
.product-description {
    color: var(--color-charcoal, #2C2E30);
}

.product-description p {
    margin-bottom: var(--space-5, 1.5rem);
}

.product-description ul,
.product-description ol {
    margin-bottom: var(--space-5, 1.5rem);
    padding-left: var(--space-6, 2rem);
}

.product-description li {
    margin-bottom: var(--space-2, 0.5rem);
}

/* Product Gallery Grid */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4, 1rem);
}

@media (min-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6, 2rem);
    }
}

.product-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.product-gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-item:hover .product-gallery-item__image {
    transform: scale(1.05);
}

/* WooCommerce Price HTML Styling */
.product-card-premium__price .woocommerce-Price-amount {
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

.product-card-premium__price del .woocommerce-Price-amount {
    color: var(--color-muted, #6B7280);
    font-weight: 400;
}

.product-card-premium__price ins {
    text-decoration: none;
}

/* Product Card Badge */
.product-card-premium__badge {
    position: absolute;
    top: var(--space-3, 0.75rem);
    left: var(--space-3, 0.75rem);
    background: var(--color-forest, #2D5530);
    color: white;
    padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
    font-family: var(--font-mono, monospace);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
    z-index: 5;
}

.product-card-premium {
    position: relative;
}

/* ==========================================================================
   7. GENERIC PAGE TEMPLATE STYLES
   ========================================================================== */

/* Page Hero - Simple (no background image) */
.page-hero--simple {
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(3rem, 6vh, 5rem);
    text-align: center;
}

.page-hero--simple .page-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Hero - With Image */
.page-hero--with-image {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 8vh, 6rem);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero--with-image .page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* Page Content Section */
.page-content {
    padding: clamp(3rem, 6vh, 5rem) 0 clamp(4rem, 8vh, 6rem);
}

.page-content h2 {
    margin-top: var(--space-8, 3rem);
    margin-bottom: var(--space-4, 1rem);
}

.page-content h3 {
    margin-top: var(--space-6, 2rem);
    margin-bottom: var(--space-3, 0.75rem);
}

.page-content p {
    margin-bottom: var(--space-5, 1.5rem);
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--space-5, 1.5rem);
    padding-left: var(--space-6, 2rem);
}

.page-content li {
    margin-bottom: var(--space-2, 0.5rem);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md, 8px);
    margin: var(--space-6, 2rem) 0;
}

.page-content blockquote {
    border-left: 4px solid var(--color-forest, #2D5530);
    padding-left: var(--space-6, 2rem);
    margin: var(--space-6, 2rem) 0;
    font-style: italic;
    color: var(--color-muted, #6B7280);
}

/* Contact Form Styling (for Contact page) */
.page-content .wpcf7-form {
    max-width: 600px;
}

.page-content .wpcf7-form input[type="text"],
.page-content .wpcf7-form input[type="email"],
.page-content .wpcf7-form input[type="tel"],
.page-content .wpcf7-form textarea {
    width: 100%;
    padding: var(--space-4, 1rem);
    border: 1px solid var(--color-border, #E5E2DB);
    border-radius: var(--radius-md, 8px);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: var(--space-4, 1rem);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-content .wpcf7-form input:focus,
.page-content .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-forest, #2D5530);
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.1);
}

.page-content .wpcf7-form input[type="submit"] {
    background: var(--color-forest, #2D5530);
    color: white;
    border: none;
    padding: var(--space-4, 1rem) var(--space-8, 3rem);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.page-content .wpcf7-form input[type="submit"]:hover {
    background: var(--color-forest-dark, #1E3A21);
}

/* ==========================================================================
   EDITORIAL STORYTELLING STYLES - About Page
   World-class narrative layout with fluid typography
   ========================================================================== */

/* -----------------------------
   Section 1: The Hook
   Large editorial headline
   ----------------------------- */
.editorial-hook {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-canvas, #FAF9F6) 0%, #F5F1EB 100%);
    position: relative;
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
}

.editorial-hook__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.editorial-hook__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 2rem;
}

.editorial-hook__location svg {
    width: 16px;
    height: 16px;
}

.editorial-hook__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 1.5rem;
}

.editorial-hook__headline em {
    color: var(--color-forest, #2D5530);
    font-style: italic;
}

.editorial-hook__subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-muted, #6B7280);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.editorial-hook__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted, #9A9A9A);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: editorial-bounce 2s ease-in-out infinite;
}

.editorial-hook__scroll svg {
    opacity: 0.5;
}

@keyframes editorial-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* -----------------------------
   Section 2: The Story
   Asymmetrical offset grid
   ----------------------------- */
.editorial-story {
    padding: 0;
    background: var(--color-white, #fff);
}

.editorial-story__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 80vh;
}

@media (min-width: 1024px) {
    .editorial-story__grid {
        grid-template-columns: 55% 45%;
    }
}

.editorial-story__image {
    position: relative;
    overflow: hidden;
}

.editorial-story__image-frame {
    height: 100%;
    min-height: 400px;
    position: relative;
}

.editorial-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-story__image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.editorial-story__content {
    padding: var(--space-12, 4rem) var(--space-8, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white, #fff);
}

@media (min-width: 1024px) {
    .editorial-story__content {
        padding: var(--space-16, 6rem) var(--space-12, 5rem);
    }
}

.editorial-story__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 1rem;
}

.editorial-story__intro {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--color-forest, #2D5530);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.editorial-story__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-muted, #4B5563);
}

.editorial-story__text p {
    margin-bottom: 1.25rem;
}

.editorial-story__text p:last-child {
    margin-bottom: 0;
}

/* -----------------------------
   Section 3: The Problem
   High-contrast charcoal block
   ----------------------------- */
.editorial-problem {
    background: var(--color-charcoal, #1C1C1C);
    color: white;
    position: relative;
    overflow: hidden;
}

.editorial-problem__inner {
    padding: var(--space-16, 6rem) 0;
}

.editorial-problem__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .editorial-problem__grid {
        grid-template-columns: 200px 1fr;
        gap: 4rem;
    }
}

.editorial-problem__stat {
    text-align: center;
}

@media (min-width: 768px) {
    .editorial-problem__stat {
        text-align: left;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-right: 3rem;
    }
}

.editorial-problem__stat-value {
    display: block;
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 500;
    line-height: 1;
    color: var(--color-amber, #D4A373);
}

.editorial-problem__stat-label {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-top: 0.75rem;
}

.editorial-problem__content {
    max-width: 650px;
}

.text-label--amber {
    color: var(--color-amber, #D4A373) !important;
}

.editorial-problem__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    margin: 0.5rem 0 1.5rem;
    color: white;
}

.editorial-problem__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.8);
}

.editorial-problem__text p {
    margin-bottom: 1.25rem;
}

.editorial-problem__text strong {
    color: white;
    font-weight: 600;
}

/* -----------------------------
   Section 4: The Solution
   Clean narrative with specs
   ----------------------------- */
.editorial-solution {
    background: var(--color-canvas, #FAF9F6);
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
}

.editorial-solution__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.editorial-solution__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 2rem;
}

.editorial-solution__content {
    text-align: left;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-muted, #4B5563);
    margin-bottom: 3rem;
}

.editorial-solution__content p {
    margin-bottom: 1.25rem;
}

.editorial-solution__content strong {
    color: var(--color-forest, #2D5530);
    font-weight: 600;
}

.editorial-solution__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
    .editorial-solution__specs {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.editorial-solution__spec {
    text-align: center;
}

.editorial-solution__spec-value {
    display: block;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

.editorial-solution__spec-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted, #9A9A9A);
    margin-top: 0.25rem;
}

/* -----------------------------
   Section 5: The Pack / Testers
   Editorial card grid
   ----------------------------- */
.editorial-testers {
    background: var(--color-white, #fff);
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
}

.editorial-testers__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.editorial-testers__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 1rem;
}

.editorial-testers__subtitle {
    font-size: 1.0625rem;
    color: var(--color-muted, #6B7280);
    line-height: 1.7;
}

.editorial-testers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tester-card-editorial {
    background: var(--color-canvas, #FAF9F6);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tester-card-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tester-card-editorial__image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.tester-card-editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tester-card-editorial:hover .tester-card-editorial__image img {
    transform: scale(1.05);
}

.tester-card-editorial__content {
    padding: 1.5rem;
}

.tester-card-editorial__name {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.25rem;
}

.tester-card-editorial__role {
    font-size: 0.875rem;
    color: var(--color-forest, #2D5530);
    font-weight: 500;
    margin-bottom: 1rem;
}

.tester-card-editorial__specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tester-card-editorial__spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tester-card-editorial__spec:last-child {
    border-bottom: none;
}

.tester-card-editorial__spec dt {
    color: var(--color-muted, #9A9A9A);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
}

.tester-card-editorial__spec dd {
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

/* -----------------------------
   Section 6: The Promise
   Full-width cinematic background
   ----------------------------- */
.editorial-promise {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.editorial-promise__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.editorial-promise__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-promise__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.4) 0%,
        rgba(28, 28, 28, 0.85) 100%
    );
}

.editorial-promise__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
    max-width: 800px;
}

.editorial-promise__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.editorial-promise__text {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-promise__signature {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-amber, #D4A373);
}

/* -----------------------------
   CTA Section
   ----------------------------- */
.editorial-cta {
    background: var(--color-forest, #2D5530);
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
}

.editorial-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.editorial-cta__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.editorial-cta__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* =============================================================================
   WOOCOMMERCE SINGLE PRODUCT - HIGH-END TECHNICAL DOSSIER
   ============================================================================= */

/* Remove WooCommerce Defaults */
.woocommerce-breadcrumb,
.woocommerce-product-details__short-description,
.woocommerce-tabs,
.product_meta,
.related.products > h2 {
    display: none;
}

/* -----------------------------
   Product Editorial Header
   Full-bleed gallery with overlapping title
   ----------------------------- */
.product-editorial-header {
    position: relative;
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr;
    background: var(--color-cream, #FAF9F6);
}

@media (min-width: 1024px) {
    .product-editorial-header {
        grid-template-columns: 1fr 1fr;
        min-height: 80vh;
    }
}

/* Gallery Side */
.product-gallery-editorial {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.product-gallery-editorial__main {
    position: relative;
    width: 100%;
    height: 50vh;
}

@media (min-width: 1024px) {
    .product-gallery-editorial__main {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

.product-gallery-editorial__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    background: white;
}

.product-gallery-editorial__thumbnails {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.product-gallery-editorial__thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.product-gallery-editorial__thumb:hover,
.product-gallery-editorial__thumb.active {
    border-color: var(--color-forest, #2D5530);
}

.product-gallery-editorial__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title Side */
.product-title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .product-title-block {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .product-title-block {
        padding: 6rem 4rem;
        min-height: 100vh;
        position: sticky;
        top: 0;
    }
}

.product-title-block__category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-title-block__category svg {
    width: 14px;
    height: 14px;
}

.product-title-block__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 1rem;
}

.product-title-block__sku {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.75rem;
    color: var(--color-muted, #9A9A9A);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.product-title-block__excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-charcoal-light, #4A4A4A);
    max-width: 480px;
    margin-bottom: 2rem;
}

/* Quick Specs Inline */
.product-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.product-quick-spec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-quick-spec__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted, #9A9A9A);
}

.product-quick-spec__value {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-charcoal, #2C2C2C);
}

/* Desktop CTA in Title Block */
.product-title-block__cta {
    display: none;
}

@media (min-width: 1024px) {
    .product-title-block__cta {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
    }
}

/* -----------------------------
   Sticky Buy Box (Desktop)
   ----------------------------- */
.product-buy-box {
    display: none;
}

@media (min-width: 1024px) {
    .product-buy-box {
        display: block;
        position: fixed;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
        width: 320px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
        padding: 2rem;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .product-buy-box.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .product-buy-box.is-hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) translateX(20px);
    }
}

.product-buy-box__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-buy-box__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-buy-box__price del {
    font-size: 1rem;
    color: var(--color-muted, #9A9A9A);
    margin-right: 0.5rem;
    text-decoration: line-through;
}

.product-buy-box__price ins {
    text-decoration: none;
}

.product-buy-box__stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
}

.product-buy-box__stock--in-stock {
    color: var(--color-forest, #2D5530);
}

.product-buy-box__stock--out-of-stock {
    color: #dc2626;
}

.product-buy-box__stock svg {
    width: 16px;
    height: 16px;
}

.product-buy-box__quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-buy-box__quantity-label {
    font-size: 0.8125rem;
    color: var(--color-muted, #9A9A9A);
}

.product-buy-box__quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.product-buy-box__quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal, #2C2C2C);
    transition: background 0.2s ease;
}

.product-buy-box__quantity-btn:hover {
    background: #f5f5f5;
}

.product-buy-box__quantity-btn svg {
    width: 14px;
    height: 14px;
}

.product-buy-box__quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.9375rem;
    font-weight: 600;
}

.product-buy-box__quantity-input:focus {
    outline: none;
}

.product-buy-box__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-buy-box__btn:hover {
    background: var(--color-forest-dark, #1e3a20);
    transform: translateY(-1px);
}

.product-buy-box__btn svg {
    width: 18px;
    height: 18px;
}

.product-buy-box__btn--external {
    background: var(--color-amber, #D4A373);
    color: var(--color-charcoal, #2C2C2C);
}

.product-buy-box__btn--external:hover {
    background: #c99862;
}

.product-buy-box__meta {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.product-buy-box__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-muted, #9A9A9A);
    margin-bottom: 0.5rem;
}

.product-buy-box__meta-item:last-child {
    margin-bottom: 0;
}

.product-buy-box__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-forest, #2D5530);
}

/* -----------------------------
   Technical Blueprint Section
   Charcoal background with leader lines
   ----------------------------- */
.product-blueprint-section {
    background: var(--color-charcoal, #2C2E30);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-blueprint-section {
        padding: 6rem 2rem;
    }
}

.product-blueprint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.product-blueprint__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.product-blueprint__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-amber, #D4A373);
    margin-bottom: 1rem;
}

.product-blueprint__label svg {
    width: 14px;
    height: 14px;
}

.product-blueprint__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.product-blueprint__subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Blueprint Grid with Leader Lines */
.product-blueprint__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .product-blueprint__grid {
        grid-template-columns: 1fr 500px 1fr;
        gap: 2rem;
        align-items: center;
    }
}

/* Specs Columns */
.product-blueprint__specs-left,
.product-blueprint__specs-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .product-blueprint__specs-left {
        text-align: right;
    }
}

/* Blueprint Image Center */
.product-blueprint__image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .product-blueprint__image {
        order: 0;
    }
}

.product-blueprint__image-inner {
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.product-blueprint__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Spec Card with Leader Line */
.product-spec-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-spec-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212, 163, 115, 0.3);
}

.product-spec-card__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber, #D4A373);
    margin-bottom: 0.5rem;
}

.product-spec-card__value {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.product-spec-card__unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 0.25rem;
}

.product-spec-card__note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

/* Leader Lines (Desktop Only) */
@media (min-width: 1024px) {
    .product-spec-card::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, var(--color-amber, #D4A373), transparent);
    }

    .product-blueprint__specs-left .product-spec-card::after {
        right: -40px;
    }

    .product-blueprint__specs-right .product-spec-card::after {
        left: -40px;
        background: linear-gradient(270deg, var(--color-amber, #D4A373), transparent);
    }
}

/* Specs Grid (Fallback/Mobile) */
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .product-specs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* -----------------------------
   Video Section
   ----------------------------- */
.product-video-section {
    background: var(--color-cream, #FAF9F6);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .product-video-section {
        padding: 6rem 2rem;
    }
}

.product-video__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.product-video__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-video__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-video__label svg {
    width: 14px;
    height: 14px;
}

.product-video__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-video__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-charcoal, #2C2C2C);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}

.product-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* -----------------------------
   Gallery Showcase
   ----------------------------- */
.product-gallery-showcase {
    padding: 5rem 1.5rem;
    background: white;
}

@media (min-width: 768px) {
    .product-gallery-showcase {
        padding: 6rem 2rem;
    }
}

.product-gallery-showcase__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-gallery-showcase__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-gallery-showcase__label svg {
    width: 14px;
    height: 14px;
}

.product-gallery-showcase__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-gallery-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-gallery-showcase__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-gallery-showcase__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-gallery-showcase__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.product-gallery-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-showcase__item:hover img {
    transform: scale(1.05);
}

.product-gallery-showcase__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-gallery-showcase__item:hover::after {
    opacity: 1;
}

/* -----------------------------
   Related Products
   ----------------------------- */
.product-related-section {
    background: var(--color-cream, #FAF9F6);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .product-related-section {
        padding: 6rem 2rem;
    }
}

.product-related__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-related__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-related__label svg {
    width: 14px;
    height: 14px;
}

.product-related__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-related__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Related Product Card */
.product-related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.product-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
}

.product-related-card__image {
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

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

.product-related-card__content {
    padding: 1.25rem;
}

.product-related-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-related-card__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

/* -----------------------------
   Mobile Sticky Buy Bar
   ----------------------------- */
.product-mobile-buy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-mobile-buy-bar.is-visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .product-mobile-buy-bar {
        display: none;
    }
}

.product-mobile-buy-bar__info {
    flex: 1;
    min-width: 0;
}

.product-mobile-buy-bar__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-mobile-buy-bar__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest, #2D5530);
}

.product-mobile-buy-bar__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.product-mobile-buy-bar__btn svg {
    width: 16px;
    height: 16px;
}

.product-mobile-buy-bar__btn--external {
    background: var(--color-amber, #D4A373);
    color: var(--color-charcoal, #2C2C2C);
}

/* -----------------------------
   Product Animations
   ----------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-title-block__category,
.product-title-block__title,
.product-title-block__sku,
.product-title-block__excerpt,
.product-quick-specs,
.product-title-block__cta {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-title-block__category { animation-delay: 0.1s; }
.product-title-block__title { animation-delay: 0.2s; }
.product-title-block__sku { animation-delay: 0.3s; }
.product-title-block__excerpt { animation-delay: 0.4s; }
.product-quick-specs { animation-delay: 0.5s; }
.product-title-block__cta { animation-delay: 0.6s; }

/* Body padding for mobile buy bar */
body.single-product {
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    body.single-product {
        padding-bottom: 0;
    }
}
