/* ═══════════════════════════════════════════════════════════════
   HotCraft — Landing sections CSS v1.0.0
   ═══════════════════════════════════════════════════════════════ */

/* ── Section base ─────────────────────────────────────────────── */
.hc-section {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.hc-section--alt {
    background: var(--hc-bg);
}

.hc-section--cream {
    background: var(--hc-cream);
}

.hc-section--dark {
    background: var(--hc-dark);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hc-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--hc-dark);
}

.hc-hero__bg {
    position: absolute;
    inset: 0;
    background:
        /* Keep the very top behind the menu flat #1A1714 so it matches the
           overscroll strip exactly — no visible seam where the menu starts. */
        linear-gradient(to bottom, var(--hc-overscroll) 0, var(--hc-overscroll) 96px, transparent 230px),
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(216, 64, 43, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(238, 154, 46, 0.06) 0%, transparent 50%),
        var(--hc-dark);
}

/* Grain texture overlay */
.hc-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/wp-content/themes/hotcraft/assets/css/)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    /* Keep the top band texture-free so it stays flat #1A1714 and matches
       the overscroll strip exactly (no visible seam at the menu). */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, transparent 96px, #000 230px);
    mask-image: linear-gradient(to bottom, transparent 0, transparent 96px, #000 230px);
}

.hc-hero .hc-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: calc(var(--hc-header-h) + 1.25rem);
    padding-bottom: 3rem;
}

.hc-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 2rem;
    flex: 1;
    padding-top: 0.25rem;
}

.hc-hero__content {
    animation: hc-fade-up 0.8s var(--hc-ease) both;
}

.hc-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--hc-olive-light);
    margin-bottom: 1.5rem;
    padding: 0.4rem 0.875rem;
    border: 1px solid rgba(95, 107, 58, 0.4);
    border-radius: 2px;
}

.hc-hero__title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.hc-hero__hot {
    color: var(--hc-red);
    display: block;
}

.hc-hero__craft {
    color: var(--hc-bg);
    display: block;
}

.hc-hero__subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hc-cream);
    margin-bottom: 1.25rem;
}

.hc-hero__description {
    font-size: 1.05rem;
    color: rgba(250, 249, 245, 0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Hero product shop row (sauce showcase below CTAs) ─────────── */
.hc-hero__shop-row {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hc-hero__shop-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--hc-warm-gray);
    margin-bottom: 0.75rem;
}

.hc-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hc-hero__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.875rem 0.4rem 0.4rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.hc-hero__pill:hover {
    background: rgba(216, 64, 43, 0.15);
    border-color: rgba(216, 64, 43, 0.4);
}

/* Sauce thumbnail inside pill */
.hc-hero__pill-img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    display: block;
}

/* Pepper icon fallback — must be constrained or it bleeds out */
.hc-hero__pill svg {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.hc-hero__pill-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--hc-bg);
}

.hc-hero__pill-price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--hc-orange);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Hero visual: composition sits lower — not flush with the header */
.hc-hero__visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: clamp(5rem, 16vw, 9rem);
    animation: hc-fade-up 1s var(--hc-ease) 0.2s both;
}

/* ── Hero scene: flame + bottle + peppers as one composition ──────
   visual-inner is a fixed square stage; everything is placed inside it
   with percentage coords so the picture stays balanced at any size. */
.hc-hero__visual-inner {
    position: relative;
    width: clamp(300px, 42vw, 460px);
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    overflow: hidden; /* clip jar fire stream — prevents horizontal page drift on mobile */
    /* dashed ring radius on the plate (disc 4% inset + ring 7% inset) */
    --hc-plate-ring: 39.5%;
    --hc-pepper-size: 24%;
}

/* Warm backdrop disc — unifies the whole scene */
.hc-hero__disc {
    position: absolute;
    z-index: 1;
    inset: 4%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 44%,
            rgba(238, 154, 46, 0.30) 0%,
            rgba(216, 64, 43, 0.14) 42%,
            rgba(216, 64, 43, 0.04) 62%,
            transparent 72%);
    box-shadow: inset 0 0 70px rgba(216, 64, 43, 0.18);
    pointer-events: none;
    opacity: 0.92;
}
.hc-hero__disc::after {
    content: "";
    position: absolute;
    inset: 7%;
    border-radius: 50%;
    border: 1px dashed rgba(238, 154, 46, 0.22);
}

/* Jar + fire (single asset, flipped horizontally) */
.hc-hero__pour-wrap {
    position: absolute;
    z-index: 2;
    width: 62%;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    animation: hc-pour-sway 5s ease-in-out infinite;
    transform-origin: 58% 22%;
    pointer-events: none;
}

.hc-hero__pour-jar {
    display: block;
    width: 100%;
    height: auto;
    opacity: 1;
    /* Static glow — no filter animation (causes bright flash on mobile load) */
    filter:
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45))
        drop-shadow(0 0 16px rgba(238, 154, 46, 0.38));
}

@keyframes hc-pour-sway {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
    .hc-hero__pour-wrap { animation: none; }
}

/* Laptop: pull scene up so plate is visible without scrolling */
@media (min-width: 901px) and (max-height: 900px) {
    .hc-hero .hc-container {
        padding-top: calc(var(--hc-header-h) + 0.75rem);
    }

    .hc-hero__visual {
        margin-top: clamp(4rem, 12vw, 7rem);
    }

    .hc-hero__visual-inner {
        width: clamp(280px, 38vw, 420px);
    }
}

/* ── Chili peppers around the flame (viewBox 64×150, upright) ─── */
/*
 * Side chili peppers — horizontal SVG (viewBox 200×82)
 * Each pepper is positioned around the central flame.
 * Base transform = rotation that makes the pepper "point outward".
 * Animation uses CSS `translate` (independent of transform).
 */
.hc-side-pepper {
    position: absolute;
    display: block;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 3; /* on the rim, above the fire splash */
}
.hc-side-pepper.is-ready {
    opacity: 1;
}

/*
 * Peppers scattered on the plate rim — asymmetric but balanced.
 * Sizes ~50% larger; positions sit on/near the dashed ring, clear of jar + fire.
 */
.hc-side-pepper--tl {
    width: calc(var(--hc-pepper-size) + 1%);
    left: calc(50% - 22%);
    top: calc(50% - 23%);
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(22deg);
}
.hc-side-pepper--tl.is-ready {
    animation: hc-pepper-sway 4.6s ease-in-out infinite;
}

.hc-side-pepper--bl {
    width: calc(var(--hc-pepper-size) - 1%);
    left: calc(50% + 6%);
    top: calc(50% + 30%);
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(135deg);
}
.hc-side-pepper--bl.is-ready {
    animation: hc-pepper-sway 5.8s ease-in-out infinite;
    animation-delay: 1.4s;
}

.hc-side-pepper--br {
    width: calc(var(--hc-pepper-size) + 1%);
    left: calc(50% + 33%);
    top: calc(50% + 4%);
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%) rotate(40deg);
}
.hc-side-pepper--br.is-ready {
    animation: hc-pepper-sway 4.9s ease-in-out infinite;
    animation-delay: 2.1s;
}

@keyframes hc-pepper-sway {
    0%, 100% { translate: 0 0; }
    50%       { translate: 0 -6px; }
}

/* Whole scene breathes slightly */
.hc-hero__visual-inner.is-alive {
    animation: hc-scene-float 6s ease-in-out infinite;
}

@keyframes hc-scene-float {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 4px; }
}

@media (prefers-reduced-motion: reduce) {
    .hc-side-pepper.is-ready,
    .hc-hero__visual-inner.is-alive { animation: none; }
}

/* Hero stats bar */
.hc-hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: hc-fade-up 0.8s var(--hc-ease) 0.4s both;
}

.hc-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hc-hero__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
}

.hc-stat__num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1;
    color: var(--hc-bg);
}

.hc-stat__text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hc-warm-gray);
}

/* Scroll indicator */
.hc-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    animation: hc-fade-up 0.8s var(--hc-ease) 0.8s both;
}

.hc-hero__scroll-line {
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--hc-red), transparent);
    animation: hc-scroll-line 1.5s ease-in-out infinite;
}

/* ── About ────────────────────────────────────────────────────── */
.hc-about {
    background: var(--hc-cream);
}

.hc-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.hc-about__text p {
    color: rgba(26, 23, 20, 0.75);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.hc-about__stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--hc-cream-dark);
}

.hc-about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hc-about__stat .hc-stat__num {
    color: var(--hc-red);
}

.hc-about__stat .hc-stat__text {
    color: var(--hc-warm-gray);
}

/* About image placeholder */
.hc-about__image {
    border-radius: 4px;
    overflow: hidden;
}

.hc-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.hc-about__image-placeholder {
    background: var(--hc-dark);
    border-radius: 4px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hc-about__image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(216,64,43,0.1) 0%, transparent 60%);
}

.hc-placeholder-pepper {
    width: 120px;
    height: auto;
    opacity: 0.9;
    animation: hc-burn 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(216, 64, 43, 0.5));
    transform-origin: 50% 85%;
}

.hc-about__image-peppers {
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
}

.hc-about__image-peppers svg {
    width: 48px;
    height: auto;
    opacity: 0.6;
}

.hc-about__image-peppers svg:nth-child(2) {
    transform: rotate(-15deg);
}
.hc-about__image-peppers svg:nth-child(3) {
    transform: rotate(10deg);
}

/* ── Sauces ───────────────────────────────────────────────────── */
.hc-sauces__grid {
    display: grid;
    /* Fixed-width tracks, centered — so a single product doesn't stretch
       across the whole row, and many products wrap neatly. */
    grid-template-columns: repeat(auto-fill, minmax(240px, 280px));
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Product image at top of sauce card */
.hc-sauce-card__image {
    display: block;
    margin: -2rem -2rem 1.25rem;
    overflow: hidden;
    aspect-ratio: 3/2;
    background: var(--hc-light);
}

.hc-sauce-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--hc-ease);
    display: block;
}

.hc-sauce-card:hover .hc-sauce-card__image img {
    transform: scale(1.04);
}

/* Price in footer row */
.hc-sauce-card__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--hc-red);
    margin-left: auto;
}

.hc-sauce-card__footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Empty sauces placeholder */
.hc-sauces__empty {
    text-align: center;
    padding: 3rem;
    color: var(--hc-warm-gray);
    font-size: 0.95rem;
}

.hc-sauces__empty a {
    color: var(--hc-red);
}

.hc-sauce-card {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid var(--hc-light);
    transition: transform 0.25s var(--hc-ease), box-shadow 0.25s var(--hc-ease);
    position: relative;
    overflow: hidden;
}

.hc-sauce-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--hc-red), var(--hc-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--hc-ease);
}

.hc-sauce-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(26,23,20,0.1);
}

.hc-sauce-card:hover::before {
    transform: scaleX(1);
}

.hc-sauce-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hc-sauce-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hc-olive);
    padding: 0.3rem 0.6rem;
    background: rgba(95, 107, 58, 0.1);
    border-radius: 2px;
}

.hc-sauce-card__pepper {
    width: 32px;
    height: 32px;
    opacity: 0.15;
    transition: opacity 0.2s;
}

.hc-sauce-card:hover .hc-sauce-card__pepper {
    opacity: 0.6;
}

.hc-sauce-card__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hc-dark);
    margin-bottom: 0.875rem;
}

.hc-sauce-card__desc {
    font-size: 0.9rem;
    color: var(--hc-warm-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hc-sauce-card__footer {
    border-top: 1px solid var(--hc-light);
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Heat dots */
.hc-heat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hc-heat__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--hc-warm-gray);
}

.hc-heat__dots {
    display: flex;
    gap: 4px;
}

.hc-heat__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hc-light);
    transition: background 0.2s;
}

.hc-heat__dot.active {
    background: var(--hc-red);
}

.hc-sauces__cta {
    text-align: center;
}

/* ── Process ──────────────────────────────────────────────────── */
.hc-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.hc-process__step {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    background: rgba(255,255,255,0.03);
    position: relative;
    transition: background 0.25s;
}

.hc-process__step:hover {
    background: rgba(255,255,255,0.06);
}

.hc-process__num {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--hc-red);
    margin-bottom: 1rem;
}

.hc-process__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    opacity: 0.8;
}

.hc-process__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hc-bg);
    margin-bottom: 0.75rem;
}

.hc-process__desc {
    font-size: 0.875rem;
    color: rgba(250, 249, 245, 0.5);
    line-height: 1.7;
}

.hc-process__arrow {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: rgba(216, 64, 43, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* ── Gallery ──────────────────────────────────────────────────── */
/* Gallery has no section modifier — give it an explicit light background
   now that <body> is brand-dark (for the overscroll fix). */
.hc-gallery {
    background: var(--hc-bg);
}

.hc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.hc-gallery__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.hc-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--hc-ease);
}

.hc-gallery__item:hover img {
    transform: scale(1.05);
}

.hc-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.hc-gallery__overlay span {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
}

.hc-gallery__item:hover .hc-gallery__overlay {
    opacity: 1;
}

/* Placeholder gallery items */
.hc-gallery__ph {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    transition: filter 0.3s;
}

.hc-gallery__ph svg {
    width: 40px;
    height: 40px;
}

.hc-gallery__ph span {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.hc-gallery__item--placeholder:hover .hc-gallery__ph {
    filter: brightness(1.1);
}

/* ── Reviews ──────────────────────────────────────────────────── */
.hc-reviews__grid {
    columns: 3;
    gap: 1.25rem;
}

.hc-review__item {
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s var(--hc-ease);
}

.hc-review__item:hover {
    transform: translateY(-3px);
}

.hc-review__item img {
    width: 100%;
    display: block;
}

.hc-reviews__empty {
    /* span the full width — otherwise the multi-column layout splits
       this message across columns (broken in Chrome/Firefox) */
    column-span: all;
    -webkit-column-span: all;
    break-inside: avoid;
    text-align: center;
    padding: 3rem;
    color: var(--hc-warm-gray);
    font-size: 0.9rem;
}

.hc-reviews__empty a {
    color: var(--hc-red);
    text-decoration: underline;
}

/* ── Contact ──────────────────────────────────────────────────── */
.hc-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(2rem, 6vw, 5rem);
}

.hc-contact__subtitle {
    color: rgba(250, 249, 245, 0.6);
    line-height: 1.8;
    margin-top: 1.25rem;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.hc-contact__socials {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hc-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: rgba(250, 249, 245, 0.7);
    transition: color 0.2s;
}

.hc-social-btn:hover {
    color: var(--hc-bg);
}

.hc-social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Contact form */
.hc-form {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 2.5rem;
}

.hc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hc-form__group {
    margin-bottom: 1.25rem;
}

.hc-form__group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(250, 249, 245, 0.5);
    margin-bottom: 0.5rem;
}

.hc-form__group input,
.hc-form__group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--hc-bg);
    outline: none;
    transition: border-color 0.2s;
}

.hc-form__group input:focus,
.hc-form__group textarea:focus {
    border-color: var(--hc-red);
}

.hc-form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.hc-form__group input::placeholder,
.hc-form__group textarea::placeholder {
    color: rgba(250, 249, 245, 0.25);
}

.hc-form__message {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 2px;
    font-size: 0.9rem;
    font-weight: 500;
}

.hc-form__message[hidden] {
    display: none;
}

.hc-form__message--success {
    background: rgba(95, 107, 58, 0.2);
    border: 1px solid rgba(95, 107, 58, 0.4);
    color: #a8c480;
}

.hc-form__message--error {
    background: rgba(216, 64, 43, 0.15);
    border: 1px solid rgba(216, 64, 43, 0.3);
    color: #ff9d8a;
}

/* ── Keyframes ────────────────────────────────────────────────── */
@keyframes hc-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes hc-burn {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    50%       { transform: rotate(2deg) scale(1.03); }
}

@keyframes hc-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.15); }
}

@keyframes hc-scroll-line {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Tablet ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hc-process__steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-process__arrow {
        display: none;
    }
}

@media (max-width: 900px) {
    .hc-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hc-hero__description {
        margin-inline: auto;
    }

    .hc-hero__actions {
        justify-content: center;
    }

    .hc-hero__visual {
        order: -1;
        margin-top: clamp(3rem, 10vw, 5rem);
    }

    /* Keep the scene compact above the text on tablet/mobile */
    .hc-hero__visual-inner {
        width: clamp(260px, 70vw, 360px);
    }
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hc-about__inner {
        grid-template-columns: 1fr;
    }

    .hc-about__image-placeholder {
        min-height: 280px;
    }

    .hc-about__stats {
        gap: 1.5rem;
    }

    .hc-contact__inner {
        grid-template-columns: 1fr;
    }

    .hc-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hc-reviews__grid {
        columns: 2;
    }

    .hc-sauces__grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .hc-hero__stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .hc-hero__stat-divider {
        display: none;
    }

    .hc-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hc-sauces__grid {
        /* One card per row, centered and width-capped so it never
           stretches into a tall, narrow shape. */
        grid-template-columns: minmax(0, 340px);
        justify-content: center;
    }

    .hc-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .hc-reviews__grid {
        columns: 1;
    }

    .hc-process__steps {
        grid-template-columns: 1fr;
    }
}

/* ── Footer legal links ───────────────────────────────────────── */
.hc-footer__bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
}
.hc-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hc-legal-link {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    opacity: 0.7;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease, color 0.2s ease;
}
.hc-legal-link:hover {
    opacity: 1;
    color: var(--hc-orange);
}

/* ── Legal modals ─────────────────────────────────────────────── */
.hc-legal[hidden],
.hc-cookie[hidden] {
    display: none !important;
}
.hc-legal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.hc-legal.is-open {
    opacity: 1;
}
.hc-legal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 14, 12, 0.7);
    backdrop-filter: blur(3px);
}
.hc-legal__panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    background: var(--hc-bg);
    color: var(--hc-dark);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s var(--hc-ease);
}
.hc-legal.is-open .hc-legal__panel {
    transform: none;
}
.hc-legal__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--hc-warm-gray);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.hc-legal__close:hover {
    background: var(--hc-light);
    color: var(--hc-red);
}
.hc-legal__title {
    margin: 0 0 1rem;
    font-family: var(--font-display, inherit);
    color: var(--hc-red);
}
.hc-legal__body h3 {
    margin: 1.4rem 0 0.4rem;
    font-size: 1.05rem;
}
.hc-legal__body p {
    margin: 0 0 0.75rem;
    line-height: 1.6;
    color: #4a463f;
}
.hc-legal__note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hc-light);
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.75;
}

/* ── Cookie consent banner ────────────────────────────────────── */
.hc-cookie {
    position: fixed;
    z-index: 1050;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin-inline: auto;
    max-width: 680px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--hc-dark);
    color: var(--hc-cream);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(140%);
    transition: transform 0.4s var(--hc-ease);
}
.hc-cookie.is-visible {
    transform: none;
}
.hc-cookie__text {
    margin: 0;
    flex: 1 1 280px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.hc-cookie__more {
    color: var(--hc-orange);
}
.hc-cookie__actions {
    display: flex;
    gap: 0.6rem;
}

@media (prefers-reduced-motion: reduce) {
    .hc-legal,
    .hc-legal__panel,
    .hc-cookie { transition: none; }
}
