:root {
    --default-font: "DM Sans", Arial, sans-serif;
    --display: "Playfair Display", Georgia, "Times New Roman", serif;
    --primary: #c47b1d;
    --primary-dark: #a46116;
}
body { font-family: var(--default-font); }
h1, h2, h3, h4, h5, h6 { font-family: var(--display); letter-spacing: 0; }

/* This self-contained hero matches the root Tarka Treats homepage. */
.hero.tarka-root-hero {
    position: relative;
    min-height: calc(100vh - 112px);
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-top: -112px;
    padding: 180px 20px 84px;
    background: #111;
}
.hero.tarka-root-hero::before { display: none; }
.tarka-root-hero .hero-bg,
.tarka-root-hero .hero-bg picture,
.tarka-root-hero .hero-bg img,
.tarka-root-hero .hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.tarka-root-hero .hero-bg img { object-fit: cover; object-position: center; border-radius: 0; }
.tarka-root-hero .hero-shade { background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.3) 48%, rgba(0,0,0,.2)); }
.tarka-root-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    transform: translateY(-22px);
}
.tarka-root-hero h1 {
    margin: 0 0 24px;
    font-family: var(--display);
    font-size: clamp(2.1rem, 4.8vw, 4.9rem);
    line-height: .98;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 22px rgba(0,0,0,.45);
}
.tarka-root-hero h1 span { color: #fff6df; font-style: italic; }
.tarka-root-hero p {
    max-width: 720px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.72;
    font-weight: 300;
}
.tarka-root-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.tarka-root-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--default-font);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}
.tarka-root-hero .btn:hover { transform: translateY(-2px); }
.tarka-root-hero .btn-primary { color: #fff; background: var(--primary); box-shadow: 0 15px 30px rgba(196,123,29,.28); }
.tarka-root-hero .btn-primary:hover { color: #fff; background: var(--primary-dark); }
.tarka-root-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); backdrop-filter: blur(10px); }
.tarka-root-hero .btn-ghost:hover { color: #153a2b; background: #fff; }

@media (max-width: 991px) {
    .hero.tarka-root-hero { min-height: 85vh; margin-top: 0; padding: 70px 20px; }
    .tarka-root-hero .hero-content { margin-bottom: 0; transform: translateY(-8px); }
}
@media (max-width: 575px) {
    .tarka-root-hero .hero-actions { flex-direction: column; }
    .tarka-root-hero .btn { width: 100%; padding: 0 20px; font-size: 1rem; }
}