.ths-hero {
    position: relative;
    min-height: 90vh;
    background: url('https://images.unsplash.com/photo-1592004045648-adbd27eb0d52?w=1400&q=80') center/cover no-repeat;
    overflow: hidden;
}
.ths-hero-overlay {
    position: absolute; inset: 0;
    background-color: #2C1A0E;
    opacity: 0.55;
}
.ths-hero-fade-bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to top, var(--cream), transparent);
    z-index: 1;
}
.ths-hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream);
    font-family: var(--font-sans);
    margin-bottom: 1rem;
}
.ths-hero-title {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--cream);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.ths-hero-sub {
    color: var(--cream);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto;
    font-family: var(--font-sans);
}
.ths-btn-hero-outline {
    border: 2px solid var(--cream);
    color: var(--cream) !important;
    border-radius: 999px;
    padding: 10px 28px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}
.ths-btn-hero-outline:hover { background: rgba(255,255,255,0.1); }

.ths-eyebrow-sage {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #4E5C43;
    font-family: var(--font-sans);
    margin-bottom: 0.5rem;
}
.ths-section-heading {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--brown);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}
.ths-body-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--brown);
    font-family: var(--font-sans);
}
.ths-scroll-row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
    .ths-scroll-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }
}
.ths-fav-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(107,63,31,0.1);
    scroll-snap-align: start;
    min-width: 240px;
    flex-shrink: 0;
    transition: box-shadow 0.2s;
}
.ths-fav-card:hover { box-shadow: 0 8px 24px rgba(107,63,31,0.15); }
.ths-fav-img-wrap { height: 180px; overflow: hidden; }
.ths-fav-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ths-fav-card:hover .ths-fav-img { transform: scale(1.05); }
.ths-card-title { font-family: var(--font-serif); color: var(--brown); font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.ths-card-desc { font-size: 0.75rem; color: #5A3518; line-height: 1.5; margin: 0; }
.ths-price { color: var(--terracotta); font-weight: 700; font-size: 1rem; }
.ths-btn-add-small {
    background: var(--brown); color: var(--cream) !important;
    border-radius: 999px; padding: 4px 12px;
    font-size: 0.75rem; font-weight: 600; text-decoration: none;
    transition: opacity 0.2s;
}
.ths-btn-add-small:hover { opacity: 1; }
.ths-link-terracotta {
    color: var(--terracotta); font-weight: 600; font-size: 0.875rem;
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
    transition: opacity 0.2s;
}
.ths-link-terracotta:hover { opacity: 1; }
.ths-story-img-wrap { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(107,63,31,0.15); aspect-ratio: 4/3; }