/* =============================================================================
   Marketing homepage — expressive / wood-texture hero. Load AFTER app.css.
   ============================================================================= */

.home-body { background: var(--color-bg); }

.home-nav { background: rgba(255, 255, 255, 0.92); backdrop-filter: saturate(150%) blur(6px); }

/* Hero --------------------------------------------------------------------- */
.hero {
    position: relative;
    color: #fff;
    background-image: url('/assets/images/floorbackg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 6rem;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47,164,169,0.88) 0%, rgba(26,107,111,0.80) 100%);
    z-index: 0;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero-copy h1 {
    color: #fff;
    font-size: 2.75rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.hero-sub {
    font-size: 1.2rem;
    max-width: 50ch;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
}
.hero-ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.btn-hero {
    padding: .875rem 1.75rem;
    font-size: 1.05rem;
}
.hero-meta { font-size: .875rem; color: rgba(255,255,255,0.75); margin: 0; }

.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-art img {
    max-width: 100%;
    max-height: 380px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    width: auto;
}

@media (max-width: 900px) {
    .hero { padding: 3rem 0 4rem; }
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hero-copy h1 { font-size: 2rem; }
    .hero-copy h1 br { display: none; }
    .hero-art img { max-height: 260px; }
}

/* Split section ----------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 1rem;
}
.split-col h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    letter-spacing: -0.01em;
}
.split-col p {
    font-size: 1.05rem;
    color: var(--color-text);
    max-width: 40ch;
    margin-bottom: 1.5rem;
}

@media (max-width: 820px) {
    .split { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1rem; }
    .split-col h2 { font-size: 1.6rem; }
}

/* Features ---------------------------------------------------------------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 2rem 1rem 4rem;
}
.feature-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-wood-light), var(--color-wood-mid));
}
.feature-badge {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--color-primary);
    margin-bottom: .5rem;
}
.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: var(--color-text);
}
.feature-card p {
    font-size: .95rem;
    color: var(--color-text-muted);
    margin: 0;
}

@media (max-width: 820px) {
    .features { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem 1rem 3rem; }
}

/* Pricing teaser ---------------------------------------------------------- */
.pricing-teaser {
    padding: 2rem 1rem 5rem;
}
.pricing-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}
.pricing-card h2 {
    font-size: 1.75rem;
    margin-bottom: .5rem;
    color: var(--color-text);
}
.pricing-card .muted { margin-bottom: 1.5rem; }
