/* ═══════════════════════════════════════════════════════════════
   COOKFASTLY — Real Food Style
   Palette: Orange · Dark Navy · White · Light Gray
═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
    --hp-orange:     #F4A623;
    --hp-orange-d:   #E0911A;
    --hp-navy:       #2B3A4A;
    --hp-navy-d:     #1D2D3A;
    --hp-white:      #FFFFFF;
    --hp-gray:       #F5F5F5;
    --hp-gray-d:     #EBEBEB;
    --hp-text:       #2D2D2D;
    --hp-muted:      #666666;
    --hp-border:     #E0E0E0;
    --hp-gold:       #F5C518;
    --hp-radius:     4px;
    --hp-radius-lg:  8px;
    --hp-shadow:     0 2px 8px rgba(0,0,0,.08);
    --hp-shadow-lg:  0 4px 20px rgba(0,0,0,.12);
}

/* ── GLOBAL OVERRIDES ──────────────────────────────────────── */
body {
    font-family: 'Outfit', sans-serif;
    background: #fff;
    color: var(--hp-text);
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--hp-text);
}

/* ── SHARED UTILITIES ───────────────────────────────────────── */
.hp-section-header { margin-bottom: 1.5rem; }
.hp-section-header__title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 900;
    color: var(--hp-text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .25rem;
    font-family: 'Outfit', sans-serif;
}
.hp-section-header__sub {
    color: var(--hp-muted);
    font-size: .88rem;
    font-family: 'Outfit', sans-serif;
}
.hp-section-header--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}
.hp-link-more {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    color: var(--hp-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
    border-bottom: 1.5px solid var(--hp-text);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}
.hp-link-more:hover { color: var(--hp-orange); border-color: var(--hp-orange); }

/* ── STARS ──────────────────────────────────────────────────── */
.hp-stars {
    color: var(--hp-gold);
    font-size: .82rem;
    letter-spacing: .03em;
    display: block;
    margin-bottom: 4px;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.hp-announcement {
    background: #FFF8E7;
    border-bottom: 1px solid #F0E4C0;
    text-align: center;
    padding: 8px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    color: var(--hp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.hp-announcement__new {
    background: var(--hp-orange);
    color: #fff;
    font-weight: 800;
    font-size: .7rem;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hp-announcement__links {
    display: flex;
    gap: 20px;
    margin-left: 12px;
}
.hp-announcement a {
    color: var(--hp-text);
    text-decoration: none;
    font-weight: 600;
}
.hp-announcement a:hover { color: var(--hp-orange); }
.hp-announcement__social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 8px;
}
.hp-announcement__social a {
    color: var(--hp-muted);
    font-size: .9rem;
    transition: color .15s;
}
.hp-announcement__social a:hover { color: var(--hp-orange); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.hp-navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--hp-border) !important;
    box-shadow: none !important;
    padding: .6rem 0 !important;
}
.hp-navbar .nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}
.hp-navbar__logo,
.hp-navbar__logo .logo-text {
    color: var(--hp-text) !important;
    font-family: 'Lora', serif !important;
    font-size: 1.3rem !important;
    font-style: italic;
}
.hp-navbar__logo i { color: var(--hp-orange) !important; }
.hp-navbar__logo img { filter: none; max-height: 44px !important; }
.hp-navbar__links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}
.hp-navbar__link {
    color: var(--hp-text) !important;
    font-weight: 600 !important;
    font-size: .88rem !important;
    font-family: 'Outfit', sans-serif !important;
    transition: color .15s !important;
}
.hp-navbar__link:hover { color: var(--hp-orange) !important; }
.hp-navbar .nav-dropdown-trigger { color: var(--hp-text) !important; font-size: .88rem !important; font-weight: 600 !important; }
.hp-navbar .nav-dropdown:hover .nav-dropdown-trigger { color: var(--hp-orange) !important; }
.hp-navbar .nav-dropdown-menu { border-top: 2px solid var(--hp-orange) !important; }
.hp-navbar .nav-dropdown-menu a { color: var(--hp-text) !important; }
.hp-navbar .nav-dropdown-menu a:hover { background: #FFF8E7 !important; color: var(--hp-orange) !important; }
.hp-navbar__search-icon {
    color: var(--hp-text) !important;
    font-size: .95rem;
    display: flex;
    align-items: center;
}
.hp-navbar__search-icon:hover { color: var(--hp-orange) !important; }
.hp-navbar__burger { color: var(--hp-text) !important; }

/* Navbar search bar */
.hp-navbar-search {
    display: flex;
    align-items: center;
    background: var(--hp-gray);
    border: 1px solid var(--hp-border);
    border-radius: 4px;
    padding: 5px 12px;
    gap: 6px;
    width: 180px;
}
.hp-navbar-search input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: .83rem;
    color: var(--hp-text);
    width: 100%;
}
.hp-navbar-search input::placeholder { color: #aaa; }
.hp-navbar-search i { color: #aaa; font-size: .82rem; }

/* ── CATEGORY SUB-NAV ───────────────────────────────────────── */
.hp-subnav {
    background: var(--hp-navy);
    padding: 0;
}
.hp-subnav__inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.hp-subnav__inner::-webkit-scrollbar { display: none; }
.hp-subnav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.1);
    transition: background .15s, color .15s;
}
.hp-subnav__link:hover,
.hp-subnav__link--active { background: rgba(255,255,255,.1); color: #fff; }
.hp-subnav__link i { font-size: .85em; }
.hp-subnav__link--special { color: var(--hp-orange) !important; }

/* ── MOBILE DRAWER ──────────────────────────────────────────── */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--hp-navy);
    z-index: 9999;
    transition: left .3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.is-open { left: 0; }
.mobile-drawer__backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9998;
}
.mobile-drawer__backdrop.is-open { display: block; }
.mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}
.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    flex: 1;
}
.mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}
.mobile-drawer__link--sub { padding-left: 36px; font-size: .85rem; }
.mobile-drawer__search {
    display: flex;
    gap: 0;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-drawer__search-input {
    flex: 1;
    border: 1px solid rgba(255,255,255,.2);
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 9px 12px;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    outline: none;
}
.mobile-drawer__search-btn {
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 9px 14px;
    cursor: pointer;
    font-size: .9rem;
}
.mobile-drawer__logo { color: #fff !important; }
.mobile-drawer__close {
    color: rgba(255,255,255,.8);
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
}
.mobile-drawer__link { color: rgba(255,255,255,.88) !important; }
.mobile-drawer__link:hover { color: var(--hp-orange) !important; background: rgba(255,255,255,.06); }
.mobile-drawer__search-input {
    border-color: rgba(255,255,255,.25) !important;
    background: rgba(255,255,255,.1) !important;
    color: #fff !important;
}
.mobile-drawer__search-input::placeholder { color: rgba(255,255,255,.5) !important; }
.mobile-drawer__search-btn { background: var(--hp-orange) !important; }

/* ── HERO GRID (4 columns) ──────────────────────────────────── */
.hp-hero-grid {
    background: #fff;
    padding: 28px 0 20px;
    border-bottom: 1px solid var(--hp-border);
}
.hp-hero-grid__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hp-hero-item {
    text-align: center;
    text-decoration: none;
    color: var(--hp-text);
    display: block;
}
.hp-hero-item__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--hp-gray);
    border-radius: var(--hp-radius-lg);
    margin-bottom: 10px;
    overflow: hidden;
}
.hp-hero-item__title {
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--hp-text);
    line-height: 1.3;
    padding: 0 4px;
}
.hp-hero-item:hover .hp-hero-item__title { color: var(--hp-orange); }

/* ── BROWSE / FILTER SECTION ────────────────────────────────── */
.hp-browse {
    background: #fff;
    padding: 36px 0 32px;
    text-align: center;
    border-bottom: 1px solid var(--hp-border);
}
.hp-browse__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 900;
    color: var(--hp-text);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
}
.hp-filter-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.hp-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 9px 36px 9px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--hp-text);
    cursor: pointer;
    min-width: 130px;
    outline: none;
    transition: border-color .15s;
}
.hp-filter-select:focus,
.hp-filter-select:hover { border-color: var(--hp-orange); }
.hp-filter-note {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    color: var(--hp-muted);
    margin-top: 6px;
}
.hp-filter-note a { color: var(--hp-orange); font-weight: 600; text-decoration: none; }

/* Search form on browse section (keeps search functionality) */
.hp-search-form {
    display: flex;
    align-items: center;
    background: var(--hp-gray);
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 8px 8px 8px 16px;
    max-width: 560px;
    margin: 0 auto 20px;
    gap: 8px;
}
.hp-search-form__icon { color: #aaa; font-size: .9rem; flex-shrink: 0; }
.hp-search-form__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    color: var(--hp-text);
    background: transparent;
}
.hp-search-form__btn {
    background: var(--hp-navy);
    color: #fff;
    border: none;
    border-radius: var(--hp-radius);
    padding: 8px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
}
.hp-search-form__btn:hover { background: var(--hp-navy-d); }
.hp-category-pills {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}
.hp-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 3px;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .03em;
    border: 1.5px solid var(--hp-border);
    background: #fff;
    color: var(--hp-text);
    transition: background .15s, border-color .15s, color .15s;
    cursor: pointer;
}
.hp-pill:hover,
.hp-pill--active {
    background: var(--hp-navy);
    color: #fff;
    border-color: var(--hp-navy);
}

/* ── PRESS BAR ──────────────────────────────────────────────── */
.hp-press-bar {
    background: var(--hp-gray);
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
    padding: 14px 0;
}
.hp-press-bar__label {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}
.hp-press-bar__logos {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}
.hp-press-bar__logo {
    font-family: 'Lora', serif;
    font-size: .95rem;
    font-weight: 700;
    color: #bbb;
    letter-spacing: -.01em;
    white-space: nowrap;
    font-style: italic;
}

/* ── CHEF / MEET SECTION ────────────────────────────────────── */
.hp-chef-section {
    background: #fff;
    padding: 48px 0;
    border-bottom: 1px solid var(--hp-border);
}
.hp-chef__badge {
    display: inline-block;
    background: var(--hp-navy);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}
.hp-chef__inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}
.hp-chef__photo {
    position: relative;
}
.hp-chef__photo img,
.hp-chef__photo .hp-chef__photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--hp-radius-lg);
    display: block;
    background: var(--hp-gray);
}
.hp-chef__photo-placeholder {
    background: var(--hp-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ccc;
}
.hp-chef__logo-badge {
    position: absolute;
    bottom: -16px;
    right: 16px;
    width: 52px;
    height: 52px;
    background: var(--hp-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: var(--hp-shadow);
}
.hp-chef__label {
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    color: var(--hp-orange);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
    display: block;
}
.hp-chef__name {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 14px;
    line-height: 1.25;
}
.hp-chef__bio {
    font-family: 'Outfit', sans-serif;
    font-size: .95rem;
    color: var(--hp-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.hp-chef__names {
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    color: var(--hp-text);
    margin-bottom: 18px;
    line-height: 1.6;
}
.hp-chef__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--hp-text);
    border: 1.5px solid var(--hp-text);
    border-radius: var(--hp-radius);
    padding: 9px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background .2s, color .2s;
}
.hp-chef__btn:hover {
    background: var(--hp-navy);
    color: #fff;
    border-color: var(--hp-navy);
}

/* ── NEWSLETTER BANNER (DARK) ────────────────────────────────── */
.hp-nl-banner {
    background: var(--hp-navy);
    padding: 48px 0;
}
.hp-nl-banner__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}
.hp-nl-banner__text { flex: 1; }
.hp-nl-banner__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 8px;
    display: block;
}
.hp-nl-banner__heading {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}
.hp-nl-banner__heading strong {
    color: var(--hp-orange);
    font-style: italic;
}
.hp-nl-banner__sub {
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    line-height: 1.6;
}
.hp-nl-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 280px;
}
.hp-nl-form__row { display: flex; gap: 8px; }
.hp-nl-form__input {
    border: none;
    border-radius: var(--hp-radius);
    padding: 11px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    flex: 1;
    outline: none;
    color: var(--hp-text);
    background: #fff;
}
.hp-nl-form__btn {
    background: var(--hp-orange);
    color: #fff;
    border: none;
    border-radius: var(--hp-radius);
    padding: 11px 22px;
    font-family: 'Outfit', sans-serif;
    font-size: .88rem;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hp-nl-form__btn:hover { background: var(--hp-orange-d); }
.hp-nl-form__consent {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hp-nl-form__consent input { width: auto; }

/* ── RECIPE CARD ────────────────────────────────────────────── */
.hp-recipe-grid {
    display: grid;
    gap: 20px;
}
.hp-recipe-grid--4 { grid-template-columns: repeat(4, 1fr); }
.hp-recipe-grid--5 { grid-template-columns: repeat(5, 1fr); }

.hp-recipe-card {
    background: #fff;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity .2s;
}
.hp-recipe-card:hover { opacity: .88; }
.hp-recipe-card__img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-color: var(--hp-gray);
    border-radius: var(--hp-radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}
.hp-recipe-card__cat {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(43,58,74,.85);
    color: #fff;
    border-radius: 2px;
    padding: 3px 8px;
    font-family: 'Outfit', sans-serif;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hp-recipe-card__body { padding: 0; }
.hp-recipe-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--hp-text);
    line-height: 1.3;
    margin-bottom: 4px;
}
.hp-recipe-card__meta {
    font-family: 'Outfit', sans-serif;
    font-size: .76rem;
    color: var(--hp-muted);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

/* ── SECTION WRAPPERS ───────────────────────────────────────── */
.hp-section       { padding: 40px 0; }
.hp-section--white   { background: #fff; }
.hp-section--cream   { background: var(--hp-gray); }
.hp-section--cream-d { background: var(--hp-gray-d); }

/* ── "NEW!" BADGE ────────────────────────────────────────────── */
.hp-new-badge {
    display: inline-block;
    background: var(--hp-orange);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: middle;
}

/* ── FEATURED RECIPE SPOTLIGHT ───────────────────────────────── */
.hp-spotlight {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid var(--hp-border);
    border-bottom: 1px solid var(--hp-border);
}
.hp-spotlight__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--hp-radius-lg);
    overflow: hidden;
    box-shadow: var(--hp-shadow);
}
.hp-spotlight__img {
    background-size: cover;
    background-position: center;
    background-color: var(--hp-gray);
    min-height: 320px;
    position: relative;
}
.hp-spotlight__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.2);
}
.hp-spotlight__play i {
    font-size: 3rem;
    color: rgba(255,255,255,.9);
}
.hp-spotlight__content {
    background: #fff;
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hp-spotlight__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    color: var(--hp-orange);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hp-spotlight__eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 1.5px;
    background: var(--hp-orange);
}
.hp-spotlight__title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hp-text);
    line-height: 1.35;
    margin-bottom: 14px;
}
.hp-spotlight__desc {
    font-family: 'Outfit', sans-serif;
    font-size: .92rem;
    color: var(--hp-muted);
    line-height: 1.7;
    margin-bottom: 22px;
}
.hp-spotlight__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--hp-orange);
    color: #fff;
    padding: 10px 22px;
    border-radius: var(--hp-radius);
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: background .2s;
    align-self: flex-start;
}
.hp-spotlight__btn:hover { background: var(--hp-orange-d); color: #fff; }

/* ── FAVORITES / ICON PILLS (DARK SECTION) ───────────────────── */
.hp-favorites {
    background: var(--hp-navy);
    padding: 52px 0;
}
.hp-favorites__heading {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 28px;
}
.hp-favorites__heading em {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-size: 1.5rem;
    letter-spacing: 0;
}
.hp-icon-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}
.hp-icon-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid rgba(255,255,255,.3);
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .15s, border-color .15s, color .15s;
}
.hp-icon-pill i {
    font-size: .9em;
    opacity: .7;
}
.hp-icon-pill:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.6);
    color: #fff;
}

/* ── INLINE NEWSLETTER (MID-PAGE) ────────────────────────────── */
.hp-nl-inline {
    background: var(--hp-gray);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius-lg);
    padding: 28px 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}
.hp-nl-inline__text {
    flex: 1;
    min-width: 180px;
}
.hp-nl-inline__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--hp-text);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hp-nl-inline__sub {
    font-size: .84rem;
    color: var(--hp-muted);
}
.hp-nl-inline form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hp-nl-inline input[type="text"],
.hp-nl-inline input[type="email"] {
    border: 1.5px solid var(--hp-border);
    border-radius: var(--hp-radius);
    padding: 9px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    outline: none;
    background: #fff;
    color: var(--hp-text);
}
.hp-nl-inline input:focus { border-color: var(--hp-orange); }
.hp-nl-inline__btn {
    background: var(--hp-orange);
    color: #fff;
    border: none;
    border-radius: var(--hp-radius);
    padding: 9px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: background .2s;
}
.hp-nl-inline__btn:hover { background: var(--hp-orange-d); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.hp-footer {
    background: var(--hp-navy) !important;
    color: rgba(255,255,255,.7) !important;
    margin-top: 0 !important;
    padding: 0 !important;
}
.hp-footer__press {
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 16px 0;
}
.hp-footer__press-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.hp-footer__press-label {
    font-family: 'Outfit', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .1em;
    white-space: nowrap;
}
.hp-footer__press-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}
.hp-footer__press-logo {
    font-family: 'Lora', serif;
    font-size: .88rem;
    font-style: italic;
    font-weight: 700;
    color: rgba(255,255,255,.35);
}
.hp-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 0 32px;
    align-items: start;
    flex-wrap: unset;
}
.hp-footer__brand { }
.hp-footer__logo {
    color: #fff !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-style: italic;
}
.hp-footer__logo i { color: var(--hp-orange) !important; }
.hp-footer__logo .logo-text { color: #fff !important; font-weight: 800; }
.hp-footer__tagline {
    font-family: 'Outfit', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin-bottom: 16px;
}
.hp-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.hp-footer__social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.hp-footer__social a:hover { background: var(--hp-orange); border-color: var(--hp-orange); color: #fff; }
.hp-footer__col { display: flex; flex-direction: column; gap: 10px; }
.hp-footer__heading {
    font-family: 'Outfit', sans-serif;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.55);
    margin-bottom: 4px;
}
.hp-footer__link {
    font-family: 'Outfit', sans-serif;
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    transition: color .15s;
    line-height: 1.5;
}
.hp-footer__link:hover { color: var(--hp-orange); }
.hp-footer__bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}
.hp-footer__bottom a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .15s;
}
.hp-footer__bottom a:hover { color: var(--hp-orange); }
.hp-footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.hp-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--hp-radius);
    font-family: 'Outfit', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.hp-btn:hover { transform: translateY(-1px); }
.hp-btn--primary  { background: var(--hp-orange); color: #fff; }
.hp-btn--primary:hover { background: var(--hp-orange-d); color: #fff; }
.hp-btn--white    { background: #fff; color: var(--hp-text); }
.hp-btn--white:hover { background: var(--hp-gray); }
.hp-btn--outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); }
.hp-btn--outline-white:hover { background: rgba(255,255,255,.12); }
.hp-btn--teal     { background: var(--hp-navy); color: #fff; }
.hp-btn--teal:hover { background: var(--hp-navy-d); }

/* ── BADGE ──────────────────────────────────────────────────── */
.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 3px;
    font-family: 'Outfit', sans-serif;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.hp-badge--accent { background: var(--hp-orange); color: #fff; }
.hp-badge--navy   { background: var(--hp-navy); color: #fff; }

/* ── COLLAGE (keep for fallback / hero) ─────────────────────── */
.hp-collage-section {
    background: #fff;
    padding: 20px 0 0;
    display: none; /* hidden, replaced by hero-grid */
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .hp-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 900px) {
    .hp-recipe-grid--4,
    .hp-recipe-grid--5 { grid-template-columns: repeat(2, 1fr); }
    .hp-hero-grid__row { grid-template-columns: repeat(2, 1fr); }
    .hp-chef__inner { grid-template-columns: 1fr; gap: 28px; }
    .hp-chef__photo img { aspect-ratio: 3/2; }
    .hp-nl-banner__inner { grid-template-columns: 1fr; }
    .hp-spotlight__inner { grid-template-columns: 1fr; }
    .hp-spotlight__img { min-height: 240px; }
    .hp-footer__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hp-navbar .nav-content { grid-template-columns: auto 1fr auto; }
    .hp-navbar-search { display: none; }
}
@media (max-width: 600px) {
    .hp-recipe-grid--4,
    .hp-recipe-grid--5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hp-hero-grid__row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hp-press-bar__logos { gap: 16px; }
    .hp-section { padding: 28px 0; }
    .hp-footer__grid { grid-template-columns: 1fr 1fr; }
    .hp-nl-form__row { flex-direction: column; }
    .hp-spotlight__content { padding: 28px 24px; }
}
