/* ═══════════════════════════════════════════════════════════
   Testing Homepage v2 — KGM Editorial Design
   ═══════════════════════════════════════════════════════════ */
.th2-page { background: var(--bg-white); }
.th2-page__body { max-width: 1180px; margin: 0 auto; padding: 0 6vw; }

/* ── HERO ────────────────────────────────────────────────── */
.th2-hero {
    position: relative; min-height: 70vh; display: flex; align-items: flex-end;
    padding: 6vw; overflow: hidden;
    background: var(--bg-section);
}
.th2-hero[style] { background-image: var(--hero-bg); background-size: cover; background-position: center; }
.th2-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(26,26,24,0.85) 0%, rgba(26,26,24,0.25) 60%, transparent 100%);
}
.th2-hero__inner { position: relative; z-index: 1; width: 100%; max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.th2-hero__content { max-width: 640px; }
.th2-hero__tag {
    display: inline-block; padding: 4px 12px; font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; background: var(--terracotta); color: #fff; margin-bottom: 16px;
}
.th2-hero__title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400;
    line-height: 1.1; color: #fff; margin: 0 0 16px; letter-spacing: -0.02em;
}
.th2-hero__lede { font-size: clamp(0.9rem, 1.2vw, 1.05rem); color: rgba(255,255,255,0.75); line-height: 1.55; max-width: 54ch; margin-bottom: 24px; }
.th2-hero__stats { display: flex; gap: 32px; }
.th2-hero-stat__num { display: block; font-family: var(--font-heading); font-size: 1.8rem; font-style: italic; color: var(--terracotta); line-height: 1; }
.th2-hero-stat__label { font-size: 0.7rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.th2-btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; transition: background 0.28s ease; }
.th2-btn--primary { background: var(--terracotta); color: #fff; }
.th2-btn--primary:hover { background: var(--terracotta-dark); }

/* ── SECTION ──────────────────────────────────────────────── */
.th2-section { padding: clamp(40px, 5vw, 70px) 0; }
.th2-section--alt { background: var(--bg-section); }
.th2-section--forest { background: var(--forest); }
.th2-section__inner { max-width: 1180px; margin: 0 auto; }
.th2-section__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.th2-section__title {
    font-family: var(--font-heading); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400;
    margin: 0; color: var(--text-primary); letter-spacing: -0.02em;
}
.th2-section__title--light { color: #fff; margin-bottom: 32px; }

/* ── EYEBROW ──────────────────────────────────────────────── */
.th2-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.th2-rule { display: inline-block; width: 28px; height: 1px; background: var(--terracotta); }

/* ── LINK ─────────────────────────────────────────────────── */
.th2-link { font-size: 0.85rem; font-weight: 600; color: var(--terracotta); text-decoration: none; letter-spacing: 0.04em; }
.th2-link:hover { color: var(--terracotta-dark); }

/* ── GRID ─────────────────────────────────────────────────── */
.th2-grid { display: grid; gap: 24px; }
.th2-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.th2-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── CARD ─────────────────────────────────────────────────── */
.th2-card { background: var(--bg-white); border: 1px solid #e8e4dc; text-decoration: none; display: flex; flex-direction: column; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
.th2-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); border-color: var(--terracotta); }
.th2-card__media { overflow: hidden; aspect-ratio: 4/3; background: var(--bg-section); position: relative; }
.th2-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.th2-card:hover .th2-card__img { transform: scale(1.04); }
.th2-card__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-muted); opacity: 0.4; }
.th2-card__title {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 500;
    color: var(--text-primary); margin: 14px 16px 6px; line-height: 1.2; letter-spacing: -0.01em;
}
.th2-card__desc { font-size: 0.85rem; color: var(--text-muted); margin: 0 16px 16px; line-height: 1.45; }
.th2-card__tag {
    display: inline-block; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terracotta); font-weight: 600; margin-bottom: 6px;
}
.th2-card__date { font-size: 0.78rem; color: var(--text-muted); }
.th2-card__body { padding: 20px; flex: 1; }
.th2-card--collection { border: none; border-bottom: 2px solid transparent; }
.th2-card--collection:hover { border-bottom-color: var(--terracotta); }

/* ── SPOTLIGHT (Object of the Week) ────────────────────────── */
.th2-spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.th2-spotlight__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-section); }
.th2-spotlight__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.th2-spotlight__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.th2-spotlight__badge {
    position: absolute; bottom: 16px; left: 16px; padding: 6px 14px;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--terracotta); color: #fff; font-weight: 600;
}
.th2-spotlight__desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.55; margin: 16px 0 20px; }

/* ── EVENT DATE CARD ──────────────────────────────────────── */
.th2-card__date {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 56px; height: 64px; background: var(--bg-section); margin: 0 auto 12px;
}
.th2-card__date-day { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 500; color: var(--terracotta); line-height: 1; }
.th2-card__date-mon { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.th2-card--event { text-align: center; padding: 24px 16px; }
.th2-card--event .th2-card__desc { margin: 8px 0 14px; }
.th2-card--event .th2-link { font-size: 0.8rem; }

/* ── NEWS LAYOUT ──────────────────────────────────────────── */
.th2-news-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; }
.th2-card--featured-news { display: block; }
.th2-card--featured-news .th2-card__media { aspect-ratio: 16/9; }
.th2-news-sidebar { display: flex; flex-direction: column; gap: 0; }
.th2-news-item {
    display: block; padding: 18px 0; text-decoration: none;
    border-bottom: 1px solid #f0ede8;
}
.th2-news-item:last-child { border-bottom: none; }
.th2-news-item__title {
    font-family: var(--font-heading); font-size: 0.95rem; font-weight: 500;
    color: var(--text-primary); margin: 0 0 4px; line-height: 1.2;
    transition: color 0.2s ease;
}
.th2-news-item:hover .th2-news-item__title { color: var(--terracotta); }
.th2-news-item__date { font-size: 0.75rem; color: var(--text-muted); }

/* ── CTA CARDS ────────────────────────────────────────────── */
.th2-cta-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 28px 20px; text-decoration: none; color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.12); transition: background 0.28s ease, border-color 0.28s ease;
}
.th2-cta-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); }
.th2-cta-card svg { margin-bottom: 14px; color: var(--terracotta); }
.th2-cta-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 400; color: #fff; margin: 0 0 6px; }
.th2-cta-card p { font-size: 0.85rem; margin: 0; line-height: 1.4; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .th2-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .th2-grid--cols-3 { grid-template-columns: repeat(2, 1fr); }
    .th2-news-layout { grid-template-columns: 1fr; }
    .th2-spotlight { grid-template-columns: 1fr; gap: 24px; }
    .th2-hero { min-height: auto; padding: 100px 6vw 50px; }
}
@media (max-width: 600px) {
    .th2-grid--cols-4, .th2-grid--cols-3 { grid-template-columns: 1fr; }
    .th2-hero__stats { width: 100%; justify-content: flex-start; }
}
