/*
 * GRIGOTEC SRL — Homepage Styles (home.css)
 * Scoped la front-page.php. Toate clasele incep cu .grg-home, .grg-hero,
 * .grg-value-prop, .grg-categories, .grg-process, .grg-tradition,
 * .grg-b2b-bar, .grg-testimonials, .grg-faq, .grg-cta-final.
 *
 * Foloseste DOAR tokens declarate in global-styles.css. Mobile-first.
 * Breakpoints: 480 / 768 / 1024 / 1240.
 * ==========================================================================
 */

/* ==========================================================================
   0. UTILITARE LOCALE
   ========================================================================== */
.grg-home {
    background-color: var(--grg-bg);
    overflow-x: hidden;
}

.grg-section-head {
    max-width: 720px;
    margin: 0 auto var(--grg-s-12) auto;
    text-align: center;
}

.grg-section-eyebrow {
    display: inline-block;
    font-family: var(--grg-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grg-accent);
    margin-bottom: var(--grg-s-3);
}

.grg-section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: var(--grg-s-4);
}

.grg-section-lead {
    font-size: 1.0625rem;
    color: var(--grg-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Aplica stagger pe reveal (variabila --grg-stagger setata inline pe element) */
.grg-reveal[style*="--grg-stagger"] {
    transition-delay: var(--grg-stagger, 0ms);
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.grg-hero {
    background-color: var(--grg-bg-alt);
    padding: var(--grg-s-16) 0 var(--grg-s-20);
    position: relative;
    overflow: hidden;
}

.grg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(200, 137, 58, 0.12), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(184, 84, 27, 0.09), transparent 50%),
        radial-gradient(ellipse at center, transparent 55%, rgba(122, 74, 43, 0.10) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Film grain overlay — SVG noise inline, opacity 0.06 pentru senzatie analog */
.grg-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    background-size: 220px 220px;
    opacity: 0.07;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.grg-hero > * { position: relative; z-index: 2; }

.grg-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-12);
    align-items: center;
}

.grg-hero__content {
    text-align: center;
}

.grg-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--grg-s-2);
    padding: var(--grg-s-2) var(--grg-s-4);
    background-color: rgba(200, 137, 58, 0.14);
    border: 1px solid rgba(200, 137, 58, 0.3);
    border-radius: var(--grg-r-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grg-accent-deep);
    margin-bottom: var(--grg-s-5);
    letter-spacing: 0.02em;
}

.grg-hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700;
    margin-bottom: var(--grg-s-5);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--grg-text);
}

.grg-hero__title-accent {
    color: var(--grg-cta);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

/* Subtle underline organic pe accent — efect editorial */
.grg-hero__title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.04em;
    height: 0.06em;
    background: linear-gradient(90deg, transparent, var(--grg-cta) 20%, var(--grg-cta) 80%, transparent);
    opacity: 0.35;
}

.grg-hero__subtitle {
    font-size: 1.125rem;
    color: var(--grg-text-muted);
    max-width: 580px;
    margin: 0 auto var(--grg-s-8) auto;
    line-height: 1.7;
}

.grg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--grg-s-4);
    justify-content: center;
    margin-bottom: var(--grg-s-10);
}

.grg-hero__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--grg-s-3) var(--grg-s-6);
    justify-content: center;
    font-size: 0.9rem;
    color: var(--grg-text-muted);
}

.grg-hero__meta li {
    display: inline-flex;
    align-items: center;
    gap: var(--grg-s-2);
}

.grg-hero__meta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--grg-success);
}

.grg-hero__meta-icon {
    width: 18px;
    height: 18px;
    color: var(--grg-accent-deep);
    flex-shrink: 0;
}
.grg-hero__meta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.grg-hero__visual {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    will-change: transform;
}

.grg-hero__svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    filter: drop-shadow(0 12px 28px rgba(122, 74, 43, 0.18));
}

@media (min-width: 1024px) {
    .grg-hero {
        padding: var(--grg-s-24) 0;
    }
    .grg-hero__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--grg-s-16);
    }
    .grg-hero__content {
        text-align: left;
    }
    .grg-hero__subtitle {
        margin-left: 0;
        margin-right: 0;
    }
    .grg-hero__actions,
    .grg-hero__meta {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   2. PROPUNERE VALOARE
   ========================================================================== */
.grg-value-prop {
    background-color: var(--grg-bg);
    padding: var(--grg-s-20) 0;
}

.grg-value-prop__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-6);
}

.grg-value-card {
    background-color: var(--grg-surface);
    border: 1px solid var(--grg-border);
    border-radius: var(--grg-r-lg);
    padding: var(--grg-s-8);
    text-align: center;
}

.grg-value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--grg-s-5) auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grg-bg-alt);
    color: var(--grg-accent-deep);
    border-radius: var(--grg-r-pill);
}

.grg-value-card__icon svg {
    width: 32px;
    height: 32px;
}

.grg-value-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--grg-s-3);
}

.grg-value-card__text {
    font-size: 0.95rem;
    color: var(--grg-text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .grg-value-prop__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grg-value-prop__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================================================
   3. CATEGORII PRODUSE
   ========================================================================== */
.grg-categories {
    background-color: var(--grg-bg-alt);
    padding: var(--grg-s-20) 0;
}

.grg-categories__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-6);
}

.grg-category-card {
    position: relative;
    background-color: var(--grg-surface);
    border: 1px solid var(--grg-border);
    border-radius: var(--grg-r-lg);
    overflow: hidden;
}

.grg-category-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.grg-category-card__badge {
    position: absolute;
    top: var(--grg-s-3);
    right: var(--grg-s-3);
    background-color: var(--grg-warning);
    color: var(--grg-text);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: var(--grg-s-1) var(--grg-s-3);
    border-radius: var(--grg-r-pill);
    z-index: 2;
}

.grg-category-card__media {
    aspect-ratio: 16 / 10;
    background-color: var(--grg-surface-warm);
    border-bottom: 1px solid var(--grg-divider);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--grg-s-5);
}

.grg-category-card__media svg {
    width: 100%;
    height: 100%;
    max-width: 200px;
}

.grg-category-card__body {
    padding: var(--grg-s-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.grg-category-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--grg-s-3);
}

.grg-category-card__text {
    font-size: 0.95rem;
    color: var(--grg-text-muted);
    line-height: 1.6;
    margin: 0 0 var(--grg-s-5) 0;
    flex: 1;
}

.grg-category-card__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--grg-s-2);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--grg-cta);
    transition: gap var(--grg-dur) var(--grg-ease);
}

.grg-category-card:hover .grg-category-card__cta,
.grg-category-card:focus-within .grg-category-card__cta {
    gap: var(--grg-s-3);
    color: var(--grg-cta-hover);
}

@media (min-width: 600px) {
    .grg-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grg-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1240px) {
    .grg-categories__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ==========================================================================
   4. PROCES ARTIZANAL — timeline
   ========================================================================== */
.grg-process {
    background-color: var(--grg-surface-warm);
    padding: var(--grg-s-20) 0;
    position: relative;
}

.grg-process__timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-8);
    position: relative;
}

.grg-process__step {
    position: relative;
    padding: var(--grg-s-6) var(--grg-s-5) var(--grg-s-6) var(--grg-s-16);
    background-color: var(--grg-surface);
    border-radius: var(--grg-r-lg);
    border: 1px solid var(--grg-border);
}

.grg-process__num {
    position: absolute;
    top: var(--grg-s-5);
    left: var(--grg-s-5);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--grg-accent);
    color: var(--grg-text-inverse);
    font-family: var(--grg-font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--grg-r-pill);
    letter-spacing: 0;
}

.grg-process__title {
    font-size: 1.125rem;
    margin-bottom: var(--grg-s-2);
    color: var(--grg-accent-deep);
}

.grg-process__text {
    font-size: 0.95rem;
    color: var(--grg-text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .grg-process__timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--grg-s-6);
    }

    /* Linie de conectare orizontala intre numere */
    .grg-process__timeline::before {
        content: '';
        position: absolute;
        top: 27px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: repeating-linear-gradient(to right,
            var(--grg-accent) 0,
            var(--grg-accent) 6px,
            transparent 6px,
            transparent 12px);
        opacity: 0.5;
        z-index: 0;
    }

    .grg-process__step {
        padding: var(--grg-s-12) var(--grg-s-5) var(--grg-s-6);
        text-align: center;
        background-color: var(--grg-surface);
    }

    .grg-process__num {
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto var(--grg-s-4) auto;
        display: flex;
        z-index: 1;
    }
}

/* ==========================================================================
   5. TRADITIE / DESPRE SCURT
   ========================================================================== */
.grg-tradition {
    background-color: var(--grg-bg);
    padding: var(--grg-s-20) 0;
}

.grg-tradition__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-10);
    align-items: center;
}

.grg-tradition__text .grg-section-eyebrow {
    margin-bottom: var(--grg-s-3);
}

.grg-tradition__text .grg-section-title {
    text-align: left;
    margin-bottom: var(--grg-s-5);
}

.grg-tradition__text p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--grg-text);
    margin-bottom: var(--grg-s-4);
}

.grg-tradition__text .grg-btn {
    margin-top: var(--grg-s-4);
}

.grg-tradition__visual {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.grg-tradition__visual svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--grg-r-lg);
    box-shadow: var(--grg-shadow);
}

@media (min-width: 1024px) {
    .grg-tradition__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--grg-s-16);
    }
}

/* ==========================================================================
   6. B2B FEATURE BAR
   ========================================================================== */
.grg-b2b-bar {
    background-color: var(--grg-accent-deep);
    color: var(--grg-text-inverse);
    padding: var(--grg-s-16) 0;
    position: relative;
    overflow: hidden;
}

.grg-b2b-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(200, 137, 58, 0.25), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(184, 84, 27, 0.20), transparent 45%);
    pointer-events: none;
}

.grg-b2b-bar__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-8);
    align-items: center;
}

.grg-b2b-bar__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--grg-bg-alt);
    margin-bottom: var(--grg-s-3);
    opacity: 0.85;
}

.grg-b2b-bar__title {
    color: var(--grg-text-inverse);
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    margin-bottom: var(--grg-s-4);
}

.grg-b2b-bar__lead {
    color: var(--grg-bg-alt);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
    opacity: 0.92;
}

.grg-b2b-bar__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--grg-s-4);
}

.grg-b2b-bar__phone {
    color: var(--grg-bg-alt);
    font-size: 0.95rem;
    opacity: 0.85;
}

.grg-b2b-bar__phone strong {
    color: var(--grg-text-inverse);
    font-family: var(--grg-font-mono);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.grg-b2b-bar__phone:hover,
.grg-b2b-bar__phone:focus {
    color: var(--grg-text-inverse);
    opacity: 1;
}

@media (min-width: 1024px) {
    .grg-b2b-bar__inner {
        grid-template-columns: 1.3fr 0.7fr;
        gap: var(--grg-s-12);
    }
    .grg-b2b-bar__cta {
        align-items: flex-end;
        text-align: right;
    }
}

/* ==========================================================================
   7. TESTIMONIALE
   ========================================================================== */
.grg-testimonials {
    background-color: var(--grg-bg-alt);
    padding: var(--grg-s-20) 0;
}

.grg-testimonials__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grg-s-6);
}

.grg-testimonial {
    background-color: var(--grg-surface);
    border: 1px solid var(--grg-border);
    border-radius: var(--grg-r-lg);
    padding: var(--grg-s-8);
    position: relative;
    display: flex;
    flex-direction: column;
}

.grg-testimonial__quote {
    position: absolute;
    top: var(--grg-s-2);
    left: var(--grg-s-5);
    font-family: var(--grg-font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--grg-accent);
    opacity: 0.35;
    pointer-events: none;
}

.grg-testimonial__text {
    font-family: var(--grg-font-display);
    font-style: italic;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--grg-text);
    margin: var(--grg-s-6) 0 var(--grg-s-6) 0;
    padding: 0;
    border: 0;
    flex: 1;
}

.grg-testimonial__author {
    border-top: 1px solid var(--grg-divider);
    padding-top: var(--grg-s-4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.grg-testimonial__name {
    font-weight: 600;
    color: var(--grg-accent-deep);
    font-size: 0.95rem;
}

.grg-testimonial__role {
    font-size: 0.8rem;
    color: var(--grg-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .grg-testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   8. FAQ
   ========================================================================== */
.grg-faq {
    background-color: var(--grg-bg);
    padding: var(--grg-s-20) 0;
}

.grg-faq__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--grg-s-3);
}

.grg-faq__item {
    background-color: var(--grg-surface);
    border: 1px solid var(--grg-border);
    border-radius: var(--grg-r);
    overflow: hidden;
    transition: border-color var(--grg-dur) var(--grg-ease),
                box-shadow var(--grg-dur) var(--grg-ease);
}

.grg-faq__item:hover {
    border-color: var(--grg-border-deep);
}

.grg-faq__item.is-open {
    border-color: var(--grg-accent);
    box-shadow: var(--grg-shadow-sm);
}

.grg-faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--grg-s-4);
    padding: var(--grg-s-5) var(--grg-s-6);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--grg-font-body);
    color: var(--grg-text);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--grg-dur) var(--grg-ease);
}

.grg-faq__trigger:hover,
.grg-faq__trigger:focus-visible {
    color: var(--grg-cta);
}

.grg-faq__trigger:focus-visible {
    outline: 2px solid var(--grg-accent);
    outline-offset: -2px;
}

.grg-faq__q {
    flex: 1;
}

.grg-faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--grg-dur) var(--grg-ease);
}

.grg-faq__icon::before,
.grg-faq__icon::after {
    content: '';
    position: absolute;
    background-color: var(--grg-accent-deep);
    transition: transform var(--grg-dur) var(--grg-ease),
                background-color var(--grg-dur) var(--grg-ease);
}

.grg-faq__icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.grg-faq__icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.grg-faq__item.is-open .grg-faq__icon::after {
    transform: translateX(-50%) scaleY(0);
}

.grg-faq__item.is-open .grg-faq__icon::before,
.grg-faq__item.is-open .grg-faq__icon::after {
    background-color: var(--grg-cta);
}

.grg-faq__panel {
    padding: 0 var(--grg-s-6) var(--grg-s-5);
    color: var(--grg-text-muted);
    line-height: 1.7;
}

.grg-faq__panel p {
    margin: 0;
}

.grg-faq__panel a {
    color: var(--grg-cta);
    font-weight: 600;
}

.grg-faq__panel a:hover,
.grg-faq__panel a:focus {
    color: var(--grg-cta-hover);
}

.grg-faq__panel[hidden] {
    display: none;
}

/* ==========================================================================
   9. CTA FINAL
   ========================================================================== */
.grg-cta-final {
    background-color: var(--grg-cta);
    color: var(--grg-text-inverse);
    padding: var(--grg-s-20) 0;
    position: relative;
    overflow: hidden;
}

/* Textura subtila — pattern de puncte warm */
.grg-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(250, 246, 238, 0.10) 1px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
}

.grg-cta-final::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(122, 74, 43, 0.18) 100%);
    pointer-events: none;
}

.grg-cta-final__inner {
    position: relative;
    text-align: center;
    max-width: 760px;
    z-index: 1;
}

.grg-cta-final__title {
    color: var(--grg-text-inverse);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--grg-s-5);
    text-shadow: 0 2px 8px rgba(122, 74, 43, 0.25);
}

.grg-cta-final__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--grg-text-inverse);
    opacity: 0.92;
    margin: 0 auto var(--grg-s-8) auto;
    max-width: 560px;
}

.grg-cta-final__btn {
    background-color: var(--grg-bg);
    color: var(--grg-cta);
    border-color: var(--grg-bg);
    font-size: 1.125rem;
    font-weight: 700;
    padding: var(--grg-s-4) var(--grg-s-10);
}

.grg-cta-final__btn:hover,
.grg-cta-final__btn:focus {
    background-color: var(--grg-text-inverse);
    border-color: var(--grg-text-inverse);
    color: var(--grg-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(42, 31, 21, 0.25);
}

/* ==========================================================================
   10. SPACING FINAL & RESPONSIVE FINE-TUNING
   ========================================================================== */
@media (max-width: 480px) {
    .grg-hero,
    .grg-value-prop,
    .grg-categories,
    .grg-process,
    .grg-tradition,
    .grg-testimonials,
    .grg-faq,
    .grg-cta-final {
        padding-top: var(--grg-s-12);
        padding-bottom: var(--grg-s-12);
    }
    .grg-b2b-bar {
        padding-top: var(--grg-s-10);
        padding-bottom: var(--grg-s-10);
    }
    .grg-section-head {
        margin-bottom: var(--grg-s-8);
    }
    .grg-hero__actions .grg-btn {
        width: 100%;
        max-width: 320px;
    }
}

/* =========================================================================
   CINEMATIC ENHANCEMENTS — refining touches profesionale (2026-05-26)
   ========================================================================= */

/* --- Section eyebrow cu accent line decorativ --- */
.grg-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--grg-s-3);
    letter-spacing: 0.16em;
}
.grg-section-eyebrow::before,
.grg-section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--grg-accent), transparent);
    opacity: 0.6;
}

/* --- Reveal refinement: scale + fade pentru senzatie cinematic --- */
.grg-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition:
        opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-delay: var(--grg-stagger, 0ms);
}
.grg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Value cards: hover icon roteste + scale --- */
.grg-value-card {
    transition: transform 350ms var(--grg-ease), box-shadow 350ms var(--grg-ease), border-color 350ms var(--grg-ease);
}
.grg-value-card__icon {
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1), background-color 350ms var(--grg-ease), color 350ms var(--grg-ease);
}
.grg-value-card:hover .grg-value-card__icon,
.grg-value-card:focus-within .grg-value-card__icon {
    transform: rotate(-6deg) scale(1.08);
    background-color: var(--grg-accent);
    color: var(--grg-bg);
}
.grg-value-card:hover {
    border-color: var(--grg-border-deep);
}

/* --- Category cards: gradient overlay subtil pe media + shadow drop --- */
.grg-category-card__media {
    aspect-ratio: 5 / 4;
    position: relative;
    overflow: hidden;
}
.grg-category-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 400ms var(--grg-ease);
    pointer-events: none;
}
.grg-category-card__media svg {
    filter: drop-shadow(0 4px 8px rgba(122, 74, 43, 0.14));
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 400ms var(--grg-ease);
}
.grg-category-card:hover .grg-category-card__media svg,
.grg-category-card:focus-within .grg-category-card__media svg {
    transform: scale(1.06) rotate(-2deg);
    filter: drop-shadow(0 8px 16px rgba(122, 74, 43, 0.22));
}
.grg-category-card:hover .grg-category-card__media::after,
.grg-category-card:focus-within .grg-category-card__media::after {
    opacity: 1;
}

/* --- Process timeline: linie conectanta + step hover --- */
.grg-process__timeline {
    position: relative;
}
.grg-process__timeline::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    height: 1px;
    background-image: linear-gradient(90deg, var(--grg-accent) 33%, transparent 0);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    opacity: 0.45;
    z-index: 0;
}
@media (max-width: 767px) {
    .grg-process__timeline::before {
        left: 32px;
        right: auto;
        top: 0;
        bottom: 0;
        width: 1px;
        height: auto;
        background-image: linear-gradient(0deg, var(--grg-accent) 33%, transparent 0);
        background-size: 1px 8px;
        background-repeat: repeat-y;
    }
}
.grg-process__step {
    position: relative;
    z-index: 1;
    transition: transform 350ms var(--grg-ease);
}
.grg-process__num {
    background-color: var(--grg-surface);
    position: relative;
    z-index: 2;
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1), color 350ms var(--grg-ease), background-color 350ms var(--grg-ease);
}
.grg-process__step:hover .grg-process__num,
.grg-process__step:focus-within .grg-process__num {
    transform: scale(1.12);
    background-color: var(--grg-accent);
    color: var(--grg-bg);
}

/* --- Tradition: drop cap pe primul paragraf + wheat field decorativ --- */
.grg-tradition {
    position: relative;
    overflow: hidden;
}
.grg-tradition::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 400 80' xmlns='http://www.w3.org/2000/svg'><g fill='none' stroke='%23C8893A' stroke-width='1' stroke-linecap='round' opacity='0.5'><path d='M20 60 Q 30 30 40 60'/><ellipse cx='28' cy='42' rx='2' ry='5'/><ellipse cx='32' cy='42' rx='2' ry='5'/><path d='M100 65 Q 110 35 120 65'/><ellipse cx='108' cy='47' rx='2' ry='5'/><ellipse cx='112' cy='47' rx='2' ry='5'/><path d='M200 55 Q 210 25 220 55'/><ellipse cx='208' cy='37' rx='2' ry='5'/><ellipse cx='212' cy='37' rx='2' ry='5'/><path d='M300 62 Q 310 32 320 62'/><ellipse cx='308' cy='44' rx='2' ry='5'/><ellipse cx='312' cy='44' rx='2' ry='5'/></g></svg>");
    background-size: 400px 80px;
    background-position: center bottom;
    background-repeat: repeat-x;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}
.grg-tradition > * { position: relative; z-index: 1; }

.grg-tradition__text > p:first-of-type::first-letter {
    font-family: var(--grg-font-display);
    font-size: 4em;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    padding: 0.05em 0.12em 0 0;
    color: var(--grg-accent-deep);
}

/* --- B2B Bar: noise overlay + typography dramatic --- */
.grg-b2b-bar {
    position: relative;
    overflow: hidden;
}
.grg-b2b-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.8  0 0 0 0 0.6  0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
    background-size: 200px 200px;
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}
.grg-b2b-bar__inner { position: relative; z-index: 1; }
.grg-b2b-bar__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
}
.grg-b2b-bar__phone strong {
    font-family: var(--grg-font-display);
    font-style: italic;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0;
}

/* --- Testimonials: quote dramatic + divider subtle --- */
.grg-testimonial {
    position: relative;
    padding-top: calc(var(--grg-s-8) + 16px);
}
.grg-testimonial__quote {
    position: absolute;
    top: var(--grg-s-3);
    left: var(--grg-s-6);
    font-family: var(--grg-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 5.5rem;
    line-height: 0.7;
    color: var(--grg-accent);
    opacity: 0.4;
    user-select: none;
}
.grg-testimonial__text {
    font-family: var(--grg-font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--grg-text);
    margin: 0 0 var(--grg-s-5) 0;
    quotes: none;
}
.grg-testimonial__text::before,
.grg-testimonial__text::after { content: none; }
.grg-testimonial__author {
    border-top: 1px solid var(--grg-border);
    padding-top: var(--grg-s-4);
    margin-top: var(--grg-s-2);
    position: relative;
}
.grg-testimonial__author::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 32px;
    height: 1px;
    background-color: var(--grg-accent);
}
.grg-testimonial__name {
    font-family: var(--grg-font-display);
    font-style: italic;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--grg-text);
    display: block;
}
.grg-testimonial__role {
    font-size: 0.82rem;
    color: var(--grg-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* --- FAQ: accordion smooth + icon rotate --- */
.grg-faq__trigger {
    transition: background-color 250ms var(--grg-ease);
    cursor: pointer;
}
.grg-faq__trigger:hover {
    background-color: rgba(200, 137, 58, 0.06);
}
.grg-faq__icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grg-faq__icon::before,
.grg-faq__icon::after {
    content: '';
    position: absolute;
    background-color: var(--grg-accent-deep);
    border-radius: 1px;
    transition: transform 300ms var(--grg-ease);
}
.grg-faq__icon::before {
    top: 50%;
    left: 2px;
    right: 2px;
    height: 2px;
    transform: translateY(-50%);
}
.grg-faq__icon::after {
    left: 50%;
    top: 2px;
    bottom: 2px;
    width: 2px;
    transform: translateX(-50%);
}
.grg-faq__trigger[aria-expanded="true"] .grg-faq__icon {
    transform: rotate(45deg);
}
.grg-faq__trigger[aria-expanded="true"] .grg-faq__icon::before,
.grg-faq__trigger[aria-expanded="true"] .grg-faq__icon::after {
    background-color: var(--grg-cta);
}

.grg-faq__panel {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 400ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 300ms ease,
        padding 350ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.grg-faq__panel[data-grg-open="true"] {
    opacity: 1;
}

/* --- CTA Final: pattern decorativ subtil --- */
.grg-cta-final {
    position: relative;
    overflow: hidden;
}
.grg-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at 88% 85%, rgba(255, 255, 255, 0.06), transparent 35%);
    pointer-events: none;
}
.grg-cta-final__inner { position: relative; z-index: 1; }
.grg-cta-final__title {
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
}

/* =========================================================================
   ICONS ANIMATION SYSTEM — "Idle whispers + Hover bursts" (2026-05-26)
   Casual & user-friendly micro-animatii. Toate respecta prefers-reduced-motion.
   ========================================================================= */

/* === KEYFRAMES — biblioteca de animatii reutilizabile === */

/* Idle: respiratie subtila (scale Y) — pentru flacara cuptor, lumanare */
@keyframes grg-flame-breathe {
    0%, 100% { transform: scaleY(1) translateZ(0); }
    50%      { transform: scaleY(1.06) translateZ(0); }
}

/* Idle: flicker mai dramatic pentru flacara tort (random feel via cubic) */
@keyframes grg-flame-flicker {
    0%   { transform: scaleY(1) scaleX(1); opacity: 1; }
    25%  { transform: scaleY(1.12) scaleX(0.94); opacity: 0.95; }
    50%  { transform: scaleY(0.92) scaleX(1.04); opacity: 1; }
    75%  { transform: scaleY(1.08) scaleX(0.98); opacity: 0.92; }
    100% { transform: scaleY(1) scaleX(1); opacity: 1; }
}

/* Idle: rotatie lenta (ceas, soare) */
@keyframes grg-rotate-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Idle: pulse opacity subtle (soare circle) */
@keyframes grg-pulse-opacity {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.84; }
}

/* Idle: bob Y alternating (inghetata scoops) */
@keyframes grg-bob-up {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-1.5px); }
}
@keyframes grg-bob-down {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(1.5px); }
}

/* Idle: breathing scale subtle (process numbers) */
@keyframes grg-breathe {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.025); }
}

/* Hover burst: wheat sway (boabe spic ondulate) */
@keyframes grg-sway {
    0%, 100% { transform: scaleY(1) rotate(0deg); }
    50%      { transform: scaleY(1.08) rotate(3deg); }
}

/* Hover burst: rays burst outward */
@keyframes grg-ray-burst {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.15); opacity: 0.7; }
}

/* Hover burst: wiggle (FAQ icon, hint pe trigger) */
@keyframes grg-wiggle {
    0%   { transform: rotate(0deg); }
    25%  { transform: rotate(-6deg); }
    75%  { transform: rotate(6deg); }
    100% { transform: rotate(0deg); }
}

/* Hover burst: drive-forward (truck masina) */
@keyframes grg-drive {
    0%, 100% { transform: translateX(0); }
    40%      { transform: translateX(3px); }
}

/* Reveal: eyebrow lines crestere width */
@keyframes grg-line-grow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}


/* === SISTEM 1 — HERO META ICONS === */

.grg-hero__meta li {
    transition: color 250ms var(--grg-ease);
}
.grg-hero__meta li:hover {
    color: var(--grg-text);
}
.grg-hero__meta-icon {
    transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    will-change: transform;
}

/* Soare meta — rotatie idle abia perceptibila */
.grg-hero__meta li:nth-child(1) .grg-hero__meta-icon {
    animation: grg-rotate-slow 60s linear infinite;
}
.grg-hero__meta li:nth-child(1):hover .grg-hero__meta-icon {
    animation: grg-rotate-slow 60s linear infinite, grg-ray-burst 350ms ease-out;
}

/* Magazin meta — roof lift pe hover (translate Y) */
.grg-hero__meta li:nth-child(2):hover .grg-hero__meta-icon {
    transform: translateY(-2px);
}

/* Masina meta — drive forward pe hover */
.grg-hero__meta li:nth-child(3):hover .grg-hero__meta-icon {
    animation: grg-drive 450ms ease-out;
}


/* === SISTEM 2 — VALUE PROP ICONS === */

/* Iconitele SVG: transform-origin centrul + will-change pentru smooth */
.grg-value-card svg { transform-origin: center; }

/* Card 1 (Faina): boabele ondulate pe hover, stagger */
.grg-value-prop__grid > li:nth-child(1) svg ellipse {
    transform-origin: center;
    transform-box: fill-box;
    transition: transform 350ms var(--grg-ease);
}
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse,
.grg-value-prop__grid > li:nth-child(1):focus-within svg ellipse {
    animation: grg-sway 700ms ease-in-out;
}
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(1) { animation-delay: 0ms; }
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(2) { animation-delay: 70ms; }
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(3) { animation-delay: 140ms; }
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(4) { animation-delay: 210ms; }
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(5) { animation-delay: 280ms; }
.grg-value-prop__grid > li:nth-child(1):hover svg ellipse:nth-of-type(6) { animation-delay: 350ms; }

/* Card 2 (Cuptor): flame idle breathing + burst pe hover */
.grg-value-prop__grid > li:nth-child(2) svg path:nth-of-type(1) {
    transform-origin: 24px 28px;
    transform-box: fill-box;
    animation: grg-flame-breathe 2.4s ease-in-out infinite;
}
.grg-value-prop__grid > li:nth-child(2):hover svg path:nth-of-type(1),
.grg-value-prop__grid > li:nth-child(2):focus-within svg path:nth-of-type(1) {
    animation: grg-flame-breathe 2.4s ease-in-out infinite, grg-flame-flicker 600ms ease-in-out;
}

/* Card 3 (Ceas): hand slow idle rotation + full spin pe hover */
.grg-value-prop__grid > li:nth-child(3) svg polyline {
    transform-origin: 24px 24px;
    transform-box: fill-box;
    animation: grg-rotate-slow 45s linear infinite;
}
.grg-value-prop__grid > li:nth-child(3):hover svg polyline,
.grg-value-prop__grid > li:nth-child(3):focus-within svg polyline {
    animation: grg-rotate-slow 1.2s linear 1, grg-rotate-slow 45s linear infinite 1.2s;
}

/* Card 4 (Soare): circle pulse opacity idle + razele burst pe hover */
.grg-value-prop__grid > li:nth-child(4) svg circle {
    animation: grg-pulse-opacity 3s ease-in-out infinite;
}
.grg-value-prop__grid > li:nth-child(4) svg line:not(:last-of-type) {
    transform-origin: 24px 28px;
    transform-box: fill-box;
    transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grg-value-prop__grid > li:nth-child(4):hover svg line:not(:last-of-type),
.grg-value-prop__grid > li:nth-child(4):focus-within svg line:not(:last-of-type) {
    transform: scale(1.15);
}
.grg-value-prop__grid > li:nth-child(4):hover svg circle,
.grg-value-prop__grid > li:nth-child(4):focus-within svg circle {
    animation: grg-pulse-opacity 3s ease-in-out infinite, grg-ray-burst 400ms ease-out;
}


/* === SISTEM 3 — CATEGORY CARDS INNER ANIMATIONS === */

/* Setup transform-origin pe SVG children pentru transform-box fill-box */
.grg-categories__grid svg * {
    transform-box: fill-box;
}

/* Card 3 (Tort): flacara lumanare flicker idle */
.grg-categories__grid > li:nth-child(3) svg path:last-of-type {
    transform-origin: center bottom;
    animation: grg-flame-flicker 900ms ease-in-out infinite;
    will-change: transform, opacity;
}

/* Card 4 (Inghetata): cele 2 scoops bob alternating */
.grg-categories__grid > li:nth-child(4) svg circle:nth-of-type(1) {
    transform-origin: center;
    animation: grg-bob-up 2.6s ease-in-out infinite;
}
.grg-categories__grid > li:nth-child(4) svg circle:nth-of-type(2) {
    transform-origin: center;
    animation: grg-bob-down 2.6s ease-in-out infinite;
    animation-delay: -1.3s;
}

/* Card 1 (Paine): scoring path opacity pulse pe hover */
.grg-categories__grid > li:nth-child(1) svg path:last-of-type {
    transition: opacity 250ms var(--grg-ease);
}
.grg-categories__grid > li:nth-child(1):hover svg path:last-of-type,
.grg-categories__grid > li:nth-child(1):focus-within svg path:last-of-type {
    opacity: 0.6;
    animation: grg-pulse-opacity 1.2s ease-in-out infinite;
}

/* Card 2 (Patiserie): cross + center dot pulse pe hover */
.grg-categories__grid > li:nth-child(2) svg path:nth-of-type(2),
.grg-categories__grid > li:nth-child(2) svg circle {
    transition: opacity 250ms var(--grg-ease), transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}
.grg-categories__grid > li:nth-child(2):hover svg circle,
.grg-categories__grid > li:nth-child(2):focus-within svg circle {
    transform: scale(1.35);
}

/* Card 3 (Tort) hover: flacara burst peste idle */
.grg-categories__grid > li:nth-child(3):hover svg path:last-of-type,
.grg-categories__grid > li:nth-child(3):focus-within svg path:last-of-type {
    animation: grg-flame-flicker 400ms ease-in-out infinite;
}

/* Card 4 (Inghetata) hover: scoops tempo accelerat */
.grg-categories__grid > li:nth-child(4):hover svg circle:nth-of-type(1),
.grg-categories__grid > li:nth-child(4):focus-within svg circle:nth-of-type(1) {
    animation-duration: 0.9s;
}
.grg-categories__grid > li:nth-child(4):hover svg circle:nth-of-type(2),
.grg-categories__grid > li:nth-child(4):focus-within svg circle:nth-of-type(2) {
    animation-duration: 0.9s;
    animation-delay: -0.45s;
}

/* Card 5 (B2B): box-uri oscileaza pe hover (stocking effect) */
.grg-categories__grid > li:nth-child(5) svg rect:nth-of-type(1),
.grg-categories__grid > li:nth-child(5) svg rect:nth-of-type(2) {
    transform-origin: center;
    transition: transform 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grg-categories__grid > li:nth-child(5):hover svg rect:nth-of-type(1),
.grg-categories__grid > li:nth-child(5):focus-within svg rect:nth-of-type(1) {
    transform: translateY(-1.5px);
}
.grg-categories__grid > li:nth-child(5):hover svg rect:nth-of-type(2),
.grg-categories__grid > li:nth-child(5):focus-within svg rect:nth-of-type(2) {
    transform: translateY(1.5px);
}


/* === SISTEM 4 — PROCESS NUMBERS RING + BREATHING === */

.grg-process__num {
    position: relative;
    animation: grg-breathe 4.5s ease-in-out infinite;
}

/* Ring outer care creste la hover */
.grg-process__num::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--grg-accent);
    opacity: 0;
    transform: scale(0.78);
    transition:
        opacity 350ms cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1),
        border-color 350ms var(--grg-ease);
    pointer-events: none;
}
.grg-process__step:hover .grg-process__num::after,
.grg-process__step:focus-within .grg-process__num::after {
    opacity: 1;
    transform: scale(1);
    border-color: var(--grg-cta);
}


/* === SISTEM 5 — FAQ ICON WIGGLE PE HOVER === */

.grg-faq__trigger:hover .grg-faq__icon {
    animation: grg-wiggle 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* Daca trigger e expandat, suprascriem wiggle cu rotate stabil 45deg (din regula anterioara) */
.grg-faq__trigger[aria-expanded="true"]:hover .grg-faq__icon {
    animation: none;
    transform: rotate(45deg);
}


/* === SISTEM 6 — SECTION EYEBROW LINES REVEAL === */

.grg-section-eyebrow::before,
.grg-section-eyebrow::after {
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 700ms cubic-bezier(0.65, 0, 0.35, 1) 250ms;
}
.grg-reveal.is-visible .grg-section-eyebrow::before,
.grg-reveal.is-visible .grg-section-eyebrow::after,
.grg-section-head.is-visible .grg-section-eyebrow::before,
.grg-section-head.is-visible .grg-section-eyebrow::after {
    transform: scaleX(1);
}
/* Pentru eyebrow-uri standalone (in tradition + b2b) — animate la is-visible al parent */
.grg-tradition__text.is-visible .grg-section-eyebrow::before,
.grg-tradition__text.is-visible .grg-section-eyebrow::after {
    transform: scaleX(1);
}


/* === REDUCE MOTION RESPECT — extins pentru toate sistemele noi === */
@media (prefers-reduced-motion: reduce) {
    .grg-reveal,
    .grg-value-card,
    .grg-value-card__icon,
    .grg-category-card__media svg,
    .grg-category-card__media::after,
    .grg-process__num,
    .grg-process__num::after,
    .grg-faq__icon,
    .grg-faq__panel,
    .grg-hero__meta-icon,
    .grg-section-eyebrow::before,
    .grg-section-eyebrow::after {
        transition: none !important;
        animation: none !important;
    }
    .grg-value-prop__grid svg *,
    .grg-categories__grid svg *,
    .grg-hero__meta svg,
    .grg-hero__meta-icon {
        animation: none !important;
        transition: none !important;
    }
    .grg-section-eyebrow::before,
    .grg-section-eyebrow::after {
        transform: scaleX(1) !important;
    }
    .grg-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ==========================================================================
   IMG OVERRIDES — imagini AI inlocuiesc SVG-urile (vezi front-page.php)
   ========================================================================== */

/* 1. HERO — imagine raster cuptor cu vatra */
.grg-hero__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--grg-r-lg);
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(122, 74, 43, 0.22));
    will-change: transform;
}

/* 2. META-ICONS — Font Awesome (inline <i>) */
.grg-hero__meta-icon i {
    font-size: 18px;
    line-height: 1;
    color: var(--grg-accent-deep);
}

/* 3. VALUE-CARD ICONS — imagini circulare in disc */
.grg-value-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--grg-r-pill);
    display: block;
}

/* Hover: imaginea preia rotatia + scale-ul */
.grg-value-card:hover .grg-value-card__icon img,
.grg-value-card:focus-within .grg-value-card__icon img {
    transform: scale(1.04);
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 4. CATEGORY-CARD MEDIA — imagini banner 16:10 */
.grg-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1), filter 400ms var(--grg-ease);
    filter: drop-shadow(0 4px 8px rgba(122, 74, 43, 0.14));
}
.grg-category-card:hover .grg-category-card__media img,
.grg-category-card:focus-within .grg-category-card__media img {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 16px rgba(122, 74, 43, 0.22));
}

/* 5. TRADITION VISUAL — imagine + caption overlay "est. 2000" */
.grg-tradition__visual {
    position: relative;
    border-radius: var(--grg-r-lg);
    overflow: hidden;
    box-shadow: var(--grg-shadow);
}
.grg-tradition__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: var(--grg-r-lg);
}
.grg-tradition__caption {
    position: absolute;
    bottom: var(--grg-s-5);
    left: var(--grg-s-6);
    font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 2.6vw, 2.25rem);
    font-weight: 700;
    color: #FAF6EE;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(20, 12, 6, 0.65), 0 0 24px rgba(184, 84, 27, 0.35);
    z-index: 2;
    pointer-events: none;
}

/* Reduced motion: dezactivez hover transforms pe imagini */
@media (prefers-reduced-motion: reduce) {
    .grg-value-card__icon img,
    .grg-category-card__media img,
    .grg-hero__img {
        transition: none !important;
        transform: none !important;
    }
}
