/* ═══════════════════════════════════════════════════════════════════════════

   Modern, premium, warm wood-inspired design system
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties (Design Tokens) ────────────────────────────────────── */
:root {
    /* Primary – Warm Woods */
    --wood-50:  #fdf8f3;
    --wood-100: #f5e6d3;
    --wood-200: #e8cba5;
    --wood-300: #d4a574;
    --wood-400: #c08b52;
    --wood-500: #8B5E3C;
    --wood-600: #724d31;
    --wood-700: #5a3c26;
    --wood-800: #422c1c;
    --wood-900: #2a1c11;

    /* Neutrals */
    --cream:       #F5F0E8;
    --cream-light: #FAF7F2;
    --white:       #FFFFFF;
    --gray-100:    #F7F7F7;
    --gray-200:    #E8E8E8;
    --gray-300:    #D1D1D1;
    --gray-400:    #A0A0A0;
    --gray-500:    #6B6B6B;
    --gray-600:    #4A4A4A;
    --gray-700:    #333333;
    --gray-800:    #1F1F1F;
    --gray-900:    #111111;

    /* Accent */
    --accent:      #2D5A3D;
    --accent-light:#3A7550;
    --accent-dark: #1E3F2B;

    /* Functional */
    --success: #2D7A4F;
    --error:   #C0392B;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Radii */
    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:     0 1px 3px rgba(139, 94, 60, 0.08);
    --shadow-md:     0 4px 12px rgba(139, 94, 60, 0.10);
    --shadow-lg:     0 8px 30px rgba(139, 94, 60, 0.12);
    --shadow-xl:     0 16px 50px rgba(139, 94, 60, 0.15);
    --shadow-glow:   0 0 40px rgba(139, 94, 60, 0.20);

    /* Transitions */
    --transition-fast:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   0.7s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container-max: 1200px;
    --navbar-height: 80px;
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.landing-page {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--cream-light);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.heading-sm {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

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

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ── Section Utilities ────────────────────────────────────────────────────── */
.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

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

.section--white {
    background-color: var(--white);
}

.section--dark {
    background-color: var(--gray-800);
    color: var(--cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-header .overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wood-500);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header .overline::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--wood-400);
    margin: var(--space-sm) auto 0;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--gray-500);
    margin-top: var(--space-md);
    line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--wood-500), var(--wood-600));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(139, 94, 60, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 94, 60, 0.4);
    background: linear-gradient(135deg, var(--wood-400), var(--wood-500));
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.btn--outline:hover {
    background: var(--white);
    color: var(--wood-600);
    transform: translateY(-2px);
}

.btn--accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 61, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--wood-500);
    border-color: var(--wood-300);
}

.btn--ghost:hover {
    background: var(--wood-500);
    color: var(--white);
    border-color: var(--wood-500);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

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

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════ */
.landing-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    padding: 0 var(--space-xl);
    transition: all var(--transition-smooth);
    background: transparent;
}

.landing-navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 20px rgba(139, 94, 60, 0.08);
    height: 70px;
}

.landing-navbar.scrolled .nav-logo-text {
    color: var(--gray-800);
}

.landing-navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.landing-navbar.scrolled .nav-links a:hover,
.landing-navbar.scrolled .nav-links a.active {
    color: var(--wood-500);
}

.nav-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 1001;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--wood-500), var(--wood-700));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.landing-navbar .nav-logo-icon {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.landing-navbar .nav-logo-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-base);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-left: 0.7rem;
    margin-right: 0.9rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    position: relative;
    padding: var(--space-xs) 0;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-cta .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
}

.nav-cta.desktop-cta {
    gap: 0;
    margin-left: 0.75rem;
}

.nav-cta.desktop-cta + .nav-cta.desktop-cta {
    margin-left: 0.65rem;
}

.desktop-cta .btn {
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    box-shadow: none;
    transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.desktop-cta .btn svg {
    width: 15px;
    height: 15px;
}

.desktop-cta .btn--primary {
    background: #8f5a33;
    border: 1px solid #8f5a33;
    color: #fff;
}

.desktop-cta .btn--primary:hover {
    transform: translateY(-1px);
    background: #a0673c;
    border-color: #a0673c;
    box-shadow: none;
}

.nav-btn-admin-list {
    border-radius: 14px;
    border: 1px solid #c88446;
    background: #d18a48;
    color: #ffffff;
    box-shadow: none;
}

.nav-btn-admin-list:hover {
    background: #df9957;
    border-color: #df9957;
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-btn-logout {
    border-radius: 14px;
    border: 1px solid #bd8450;
    background: #c68d57;
    color: #fff;
    box-shadow: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.nav-btn-logout:hover {
    background: #d59d66;
    border-color: #d59d66;
    color: #fff;
    transform: translateY(-1px);
}

.nav-order-alerts-desktop {
    position: relative;
}

.nav-order-alerts-trigger {
    min-height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.55rem 0.95rem;
}

.landing-navbar.scrolled .nav-order-alerts-trigger {
    color: var(--gray-800);
    border-color: rgba(139, 94, 60, 0.16);
    background: rgba(139, 94, 60, 0.08);
}

.nav-order-alerts-trigger:hover,
.nav-order-alerts-trigger.show {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.landing-navbar.scrolled .nav-order-alerts-trigger:hover,
.landing-navbar.scrolled .nav-order-alerts-trigger.show {
    color: var(--gray-800);
    background: rgba(139, 94, 60, 0.14);
}

.nav-order-alerts-trigger__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-order-alerts-trigger__text {
    margin-left: 0.45rem;
}

.nav-order-alerts-trigger__count {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: #b91c1c;
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(185, 28, 28, 0.28);
}

.nav-order-alerts-trigger__badge,
.nav-order-alerts-mobile__badge {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #b91c1c;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(185, 28, 28, 0.28);
}

.nav-order-alerts-menu {
    width: 360px;
    border: 1px solid rgba(139, 94, 60, 0.14);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 48px rgba(42, 28, 17, 0.18);
}

.nav-order-alerts-menu__header,
.nav-order-alerts-menu__footer {
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, #fff9f4 0%, #fff 100%);
}

.nav-order-alerts-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(139, 94, 60, 0.1);
}

.nav-order-alerts-menu__header strong {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.nav-order-alerts-menu__header p {
    margin: 0.25rem 0 0;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.nav-order-alerts-menu__total {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wood-600);
    color: #fff;
    font-weight: 700;
}

.nav-order-alerts-menu__list {
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
}

.nav-order-alerts-item {
    display: block;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid rgba(139, 94, 60, 0.08);
}

.nav-order-alerts-item:hover {
    background: #fff7ef;
}

.nav-order-alerts-item__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--gray-800);
    font-size: 0.83rem;
}

.nav-order-alerts-item__top span,
.nav-order-alerts-item__meta {
    color: var(--gray-500);
}

.nav-order-alerts-item__meta {
    margin-top: 0.3rem;
    font-size: 0.8rem;
    line-height: 1.45;
}

.nav-order-alerts-item__tags {
    display: flex;
    gap: 0.45rem;
    margin-top: 0.55rem;
}

.nav-order-alerts-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.nav-order-alerts-tag.is-new {
    background: rgba(37, 99, 235, 0.12);
    color: #1d4ed8;
}

.nav-order-alerts-tag.is-pending {
    background: rgba(217, 119, 6, 0.14);
    color: #b45309;
}

.nav-order-alerts-empty {
    padding: 1.1rem;
    color: var(--gray-500);
    font-size: 0.88rem;
    background: #fff;
}

.nav-order-alerts-menu__footer {
    border-top: 1px solid rgba(139, 94, 60, 0.08);
}

.nav-order-alerts-menu__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: var(--wood-600);
    color: #fff;
    font-weight: 600;
}

.nav-order-alerts-menu__link:hover {
    color: #fff;
    background: var(--wood-500);
}

.nav-order-alerts-mobile {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.landing-navbar.scrolled .nav-toggle span {
    background: var(--gray-700);
}

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

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

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

/* ══════════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.55) 0%,
        rgba(42, 28, 17, 0.75) 60%,
        rgba(42, 28, 17, 0.90) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(139, 94, 60, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 139, 82, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--wood-200);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero h1 .accent-word {
    color: var(--wood-300);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════════════
   PRODUCTS SECTION
   ══════════════════════════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    position: relative;
    group: true;
}

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

.product-card-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 28, 17, 0.6), transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.product-card-action {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.product-card:hover .product-card-action {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.product-card-body {
    padding: var(--space-lg) var(--space-xl);
}

.product-card-category {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--wood-400);
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.product-card-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ══════════════════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wood-400), var(--wood-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, var(--wood-50), var(--wood-100));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--wood-500), var(--wood-600));
    transform: scale(1.05);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--wood-500);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--transition-base);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT / NOSOTROS SECTION
   ══════════════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--wood-400), var(--wood-600));
    border-radius: var(--radius-xl);
    z-index: -1;
}

.about-experience {
    position: absolute;
    bottom: var(--space-xl);
    left: var(--space-xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-experience-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wood-500);
    line-height: 1;
}

.about-experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-top: var(--space-xs);
}

.about-content .overline {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--wood-500);
    margin-bottom: var(--space-md);
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content > p {
    color: var(--gray-500);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--wood-50), var(--wood-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--wood-500);
    fill: none;
    stroke-width: 1.5;
}

.value-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    position: relative;
    transition: all var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--wood-200);
}

.testimonial-quote {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--wood-300);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-lg);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: #E8A838;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--wood-300), var(--wood-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--gray-800);
}

.testimonial-role {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    color: var(--gray-500);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--wood-50), var(--wood-100));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--wood-500);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-detail p,
.contact-detail a {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-detail a:hover {
    color: var(--wood-500);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-card h3 {
    font-size: 1.375rem;
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--cream-light);
    color: var(--gray-800);
    transition: all var(--transition-fast);
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-400);
}

.form-control:focus {
    border-color: var(--wood-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.1);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact-form-card .btn {
    width: 100%;
    margin-top: var(--space-sm);
}

/* ══════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════ */
.cta-banner {
    background: linear-gradient(135deg, var(--wood-600), var(--wood-800));
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 139, 82, 0.15), transparent 60%);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 60%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    max-width: 550px;
    margin: 0 auto var(--space-2xl);
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.landing-footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-brand .nav-logo-icon {
    margin-bottom: var(--space-md);
}

.footer-brand .nav-logo-text {
    color: var(--white);
    font-size: 1.5rem;
    display: block;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--wood-500);
    border-color: var(--wood-500);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

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

.footer-column a {
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--wood-300);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.8125rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-lg);
}

.footer-bottom-links a {
    font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
    color: var(--wood-300);
}

/* ══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays for grid children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════════════════════
   STATS BAR (below hero)
   ══════════════════════════════════════════════════════════════════ */
.stats-bar {
    background: var(--white);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-inner {
    display: flex;
    justify-content: center;
    gap: var(--space-4xl);
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wood-500);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: var(--space-xs);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE – Mobile First
   ══════════════════════════════════════════════════════════════════ */

/* Tablet & Below */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .about-grid {
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* Tablet */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    /* Navbar Mobile */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: calc(var(--navbar-height) + var(--space-xl)) var(--space-2xl) var(--space-2xl);
        margin-left: 0;
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
        transition: right var(--transition-fast);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links .nav-cta {
        display: flex !important;
        align-items: stretch;
        margin-top: var(--space-md);
        padding-top: 0;
        height: auto;
        position: static;
        width: 100%;
    }

    .nav-links .nav-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: var(--radius-md);
        letter-spacing: 0.02em;
    }

    /* Botón "Hacer pedido" en menú móvil */
    .nav-links .nav-cta .btn--primary {
        background: var(--wood-600);
        color: var(--white) !important;
        border: 1.5px solid var(--wood-700);
        box-shadow: 0 6px 14px rgba(73, 45, 27, 0.18);
    }

    .nav-links .nav-cta .btn--primary:hover,
    .nav-links .nav-cta .btn--primary:active {
        background: var(--wood-700);
        border-color: var(--wood-700);
        color: var(--white) !important;
        box-shadow: 0 8px 16px rgba(73, 45, 27, 0.2);
    }

    /* Botón "Cerrar sesión" en menú móvil */
    .nav-links .nav-cta .nav-btn-logout {
        background: transparent;
        color: var(--wood-600);
        border: 1.5px solid var(--wood-200);
        box-shadow: none;
    }

    .nav-links .nav-cta .nav-btn-logout:hover,
    .nav-links .nav-cta .nav-btn-logout:active {
        background: var(--wood-50);
        color: var(--wood-700);
        border-color: var(--wood-300);
    }

    .nav-order-alerts-mobile {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.85rem;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 18px;
        background: linear-gradient(180deg, #fffaf5 0%, #fff 100%);
        border: 1px solid rgba(139, 94, 60, 0.12);
        box-shadow: 0 12px 28px rgba(42, 28, 17, 0.08);
    }

    .nav-order-alerts-mobile__icon {
        position: relative;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(139, 94, 60, 0.12);
        color: var(--wood-700);
    }

    .nav-order-alerts-mobile__body {
        display: flex;
        flex-direction: column;
        gap: 0.12rem;
    }

    .nav-order-alerts-mobile__body strong {
        color: var(--gray-800);
        font-size: 0.92rem;
    }

    .nav-order-alerts-mobile__body span {
        color: var(--gray-500);
        font-size: 0.8rem;
    }

    .nav-order-alerts-mobile__link {
        grid-column: 1 / -1;
        margin-top: 0.2rem;
        width: 100%;
        justify-content: center;
        background: var(--wood-600);
        color: #fff !important;
        border: 1px solid var(--wood-700);
        border-radius: 12px;
    }

    .nav-order-alerts-mobile__link:hover {
        background: var(--wood-700);
        color: #fff !important;
    }

    .desktop-cta {
        display: none;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--gray-700) !important;
        font-size: 1.0625rem;
        padding: var(--space-sm) 0;
    }

    .nav-links a:hover {
        color: var(--wood-500) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .mobile-overlay.show {
        display: block;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image img {
        height: 350px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

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

    .stats-inner {
        gap: var(--space-2xl);
    }
}

/* Mobile */
@media (max-width: 480px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .products-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .stats-inner {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .section-header {
        margin-bottom: var(--space-2xl);
    }

    /* Product cards compactas en móvil */
    .product-card-body {
        padding: var(--space-sm) var(--space-md);
    }

    .product-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .product-card-desc {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .product-card:hover {
        transform: translateY(-3px);
    }

    .product-card-img {
        height: 160px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--wood-400);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline-offset: 4px;
}
