/* =========================================================================
   FUUDYS — Tock-inspired storefront theme
   Overrides ti-theme-orange (Bootstrap 5 base). Loaded after app.css.
   ========================================================================= */

:root {
    --fuudys-ink: #1c1a16;
    --fuudys-ink-soft: #4a4640;
    --fuudys-cream: #faf6ea;
    --fuudys-cream-deep: #f3ecd8;
    --fuudys-white: #ffffff;
    --fuudys-accent: #c1502e;
    --fuudys-accent-dark: #9c3f23;
    --fuudys-line: #e7dfc9;
    --fuudys-char: #0f0d0a;
    --fuudys-ember: #ff8a5c;
    --fuudys-gold: #c89a4b;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html, body {
    background-color: var(--fuudys-cream);
    color: var(--fuudys-ink);
    font-family: var(--font-body);
}

h1, h2, h3, h4, .card-title,
#featured-menu-box h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--fuudys-ink);
    letter-spacing: -0.01em;
}

a {
    color: var(--fuudys-ink);
}

a:hover {
    color: var(--fuudys-accent);
}

/* ---------------------------------------------------------------------
   Buttons & form controls — soft pill shapes, warm accent
   --------------------------------------------------------------------- */

.btn-primary {
    background-color: var(--fuudys-ink) !important;
    border-color: var(--fuudys-ink) !important;
    color: var(--fuudys-cream) !important;
    border-radius: 999px !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--fuudys-accent) !important;
    border-color: var(--fuudys-accent) !important;
    color: var(--fuudys-white) !important;
}

.form-control,
.form-select {
    border-radius: 999px;
    border-color: var(--fuudys-line);
    background-color: var(--fuudys-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fuudys-accent);
    box-shadow: 0 0 0 0.2rem rgba(193, 80, 46, 0.15);
}

/* ---------------------------------------------------------------------
   Header — minimal Tock-style chrome
   --------------------------------------------------------------------- */

.fuudys-header {
    background-color: var(--fuudys-cream);
    border-bottom: 1px solid var(--fuudys-line);
}

.fuudys-header .navbar-brand {
    display: flex;
    align-items: center;
}

.fuudys-header .img-logo {
    height: 34px;
    width: auto;
}

.fuudys-header .nav-link {
    color: var(--fuudys-ink);
    font-weight: 500;
}

.fuudys-header .btn-outline-dark {
    border-radius: 999px;
    border-color: var(--fuudys-ink);
    color: var(--fuudys-ink);
}

.fuudys-header .btn-outline-dark:hover {
    background-color: var(--fuudys-ink);
    color: var(--fuudys-cream);
}

.fuudys-header .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .fuudys-header .navbar-collapse {
        padding: 0.5rem 0 1rem;
    }

    .fuudys-header .nav-link {
        padding-top: 0.7rem;
        padding-bottom: 0.7rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ---------------------------------------------------------------------
   Hero — full-bleed photography with floating search card
   --------------------------------------------------------------------- */

.fuudys-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(28,26,22,0.15) 0%, rgba(28,26,22,0.55) 100%),
        var(--fuudys-hero-image, linear-gradient(135deg, #2b2620, #4a3a2c)) center/cover no-repeat;
    padding: 4rem 1.5rem 8rem;
    text-align: center;
}

.fuudys-hero h1 {
    font-family: var(--font-display);
    color: var(--fuudys-white);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    margin-bottom: 0.5rem;
}

.fuudys-hero p.lead {
    color: var(--fuudys-cream);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Search widget — floating card overlapping the hero */

.fuudys-search-card {
    position: relative;
    z-index: 5;
    max-width: 880px;
    margin: -4.5rem auto 0;
    background: var(--fuudys-white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(28, 26, 22, 0.18);
    padding: 1.5rem;
}

.fuudys-search-card #local-search-container .input-group {
    border-radius: 999px !important;
    border: 1px solid var(--fuudys-line) !important;
    overflow: hidden;
}

.fuudys-search-card .search-label {
    font-family: var(--font-display);
}

.fuudys-search-card h2 {
    font-size: 1.4rem;
}

/* ---------------------------------------------------------------------
   Quick-link tiles (Dine in / Pickup / Delivery / Reservations)
   --------------------------------------------------------------------- */

.fuudys-quicklinks {
    max-width: 880px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    padding: 0 1.5rem;
}

.fuudys-quicklink {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: var(--fuudys-white);
    border-radius: 18px;
    border: 1px solid var(--fuudys-line);
    text-decoration: none;
    color: var(--fuudys-ink);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fuudys-quicklink:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(28, 26, 22, 0.12);
    color: var(--fuudys-accent);
}

.fuudys-quicklink i {
    font-size: 1.4rem;
    color: var(--fuudys-accent);
}

@media (max-width: 767px) {
    .fuudys-quicklinks {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        gap: 0.7rem;
        padding: 0 1.25rem;
        margin-top: 1.75rem;
        scrollbar-width: none;
    }

    .fuudys-quicklinks::-webkit-scrollbar {
        display: none;
    }

    .fuudys-quicklink {
        flex: 0 0 auto;
        width: 84px;
        min-height: 44px;
        padding: 0.9rem 0.5rem;
        font-size: 0.76rem;
        scroll-snap-align: start;
    }

    .fuudys-quicklink i {
        font-size: 1.15rem;
    }
}

/* ---------------------------------------------------------------------
   Section headings for carousels/collections
   --------------------------------------------------------------------- */

.fuudys-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.fuudys-section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.fuudys-section-heading h2 {
    font-size: 1.75rem;
    margin: 0;
}

.fuudys-section-heading .fuudys-explore-all {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fuudys-accent);
    text-decoration: none;
    white-space: nowrap;
}

.fuudys-section-sub {
    color: var(--fuudys-ink-soft);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

/* ---------------------------------------------------------------------
   Featured item / restaurant cards
   --------------------------------------------------------------------- */

#featured-menu-box {
    background: transparent;
}

#featured-menu-box .card {
    border: 1px solid var(--fuudys-line);
    box-shadow: 0 1px 3px rgba(28,26,22,0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#featured-menu-box .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(28, 26, 22, 0.12);
}

#featured-menu-box .card-title {
    font-size: 1.1rem;
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */

.footer {
    background-color: var(--fuudys-ink);
    color: var(--fuudys-cream-deep);
}

.footer a {
    color: var(--fuudys-cream-deep);
}

.footer a:hover {
    color: var(--fuudys-white);
}

.footer hr {
    border-color: rgba(250, 246, 234, 0.15);
}

@media (max-width: 767px) {
    .fuudys-search-card {
        margin-top: -3rem;
        padding: 1rem;
    }

    .fuudys-hero {
        padding-bottom: 6rem;
        min-height: 380px;
    }
}

/* ---------------------------------------------------------------------
   Reservation / booking flow
   --------------------------------------------------------------------- */

.fuudys-booking-page {
    max-width: 720px;
}

.fuudys-booking-page .card {
    background: var(--fuudys-white);
    border: 1px solid var(--fuudys-line);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(28, 26, 22, 0.05);
}

.fuudys-booking-page .card + .card {
    margin-top: 1rem;
}

.fuudys-booking-page .panel-local h1 {
    font-size: 1.6rem;
}

.fuudys-booking-page .panel-local img {
    border-radius: 16px;
}

.fuudys-booking-page h1.h3,
.fuudys-booking-page [data-control="booking"] > h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

/* Guest / date / time inline picker */

.fuudys-booking-page #picker-inline-form .form-row {
    align-items: stretch;
}

.fuudys-booking-page #picker-inline-form .form-select,
.fuudys-booking-page #picker-inline-form .form-control {
    height: 100%;
}

.fuudys-booking-page #picker-inline-form button.btn-primary {
    height: 100%;
}

/* Time slot buttons — pill chips like Tock's time picker */

.fuudys-booking-page #picker-form .btn {
    margin-bottom: 0.6rem;
}

.fuudys-booking-page #picker-form .btn.disabled {
    background-color: var(--fuudys-cream-deep) !important;
    border-color: var(--fuudys-line) !important;
    color: var(--fuudys-ink-soft) !important;
}

.fuudys-booking-page a.link-primary,
.fuudys-booking-page a.link-dark {
    color: var(--fuudys-accent) !important;
}

/* ---------------------------------------------------------------------
   Restaurant discovery / locations listing
   --------------------------------------------------------------------- */

.fuudys-locations-page .border.rounded,
.fuudys-locations-page .bg-white.border {
    border-color: var(--fuudys-line) !important;
    border-radius: 16px !important;
}

.fuudys-locations-page .input-group {
    border-radius: 999px !important;
    overflow: hidden;
}

.fuudys-locations-page .btn-secondary {
    background-color: var(--fuudys-ink) !important;
    border-color: var(--fuudys-ink) !important;
    border-radius: 999px !important;
}

.fuudys-locations-page .local-group .card {
    border: 1px solid var(--fuudys-line);
    border-radius: 20px;
    box-shadow: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fuudys-locations-page .local-group .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(28, 26, 22, 0.12);
}

.fuudys-locations-page .local-group .card img {
    border-radius: 14px;
}

.fuudys-locations-page .local-group h2 {
    font-size: 1.15rem;
}

/* ---------------------------------------------------------------------
   Magazine
   --------------------------------------------------------------------- */

.fuudys-magazine-hero {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
}

.fuudys-magazine-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.fuudys-magazine-hero .lead {
    color: var(--fuudys-ink-soft);
    max-width: 36rem;
    margin: 0 auto;
}

.fuudys-magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.fuudys-issue-card {
    display: block;
    text-decoration: none;
    color: var(--fuudys-ink);
    border-radius: 20px;
    overflow: hidden;
    background: var(--fuudys-white);
    border: 1px solid var(--fuudys-line);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fuudys-issue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(28, 26, 22, 0.15);
    color: var(--fuudys-ink);
}

.fuudys-issue-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--fuudys-cream-deep);
}

.fuudys-issue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fuudys-issue-info {
    padding: 1.25rem 1.5rem 1.5rem;
}

.fuudys-issue-info h2 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.fuudys-issue-info p {
    color: var(--fuudys-ink-soft);
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
}

.fuudys-issue-meta {
    font-size: 0.8rem;
    color: var(--fuudys-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Reader */

.fuudys-reader {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.fuudys-reader-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.fuudys-reader-back {
    position: absolute;
    left: 0;
    top: 0.3rem;
    text-decoration: none;
    color: var(--fuudys-ink-soft);
    font-size: 0.9rem;
    font-weight: 600;
}

.fuudys-reader-back:hover {
    color: var(--fuudys-accent);
}

.fuudys-reader-header h1 {
    font-size: 1.6rem;
}

.fuudys-reader-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fuudys-ink);
    border-radius: 20px;
    padding: 1.5rem;
    min-height: 400px;
}

.fuudys-reader-page {
    position: relative;
    max-width: 100%;
    max-height: 70vh;
}

.fuudys-reader-image {
    display: none;
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.fuudys-reader-image.active {
    display: block;
}

.fuudys-reader-nav {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: none;
    background: var(--fuudys-white);
    color: var(--fuudys-ink);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
}

.fuudys-reader-nav:hover {
    background: var(--fuudys-accent);
    color: var(--fuudys-white);
}

.fuudys-reader-counter {
    text-align: center;
    margin-top: 1rem;
    color: var(--fuudys-ink-soft);
    font-size: 0.9rem;
}

.fuudys-reader-thumbs {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.fuudys-reader-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 74px;
    padding: 0;
    border-radius: 6px;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: none;
    opacity: 0.6;
}

.fuudys-reader-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fuudys-reader-thumb.active {
    border-color: var(--fuudys-accent);
    opacity: 1;
}

@media (max-width: 767px) {
    .fuudys-reader-stage {
        padding: 0.75rem;
        min-height: 300px;
    }

    .fuudys-reader-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .fuudys-reader-prev { left: 0.5rem; }
    .fuudys-reader-next { right: 0.5rem; }
}

/* ---------------------------------------------------------------------
   Influencers — hero (After Dark / Editorial copy)
   --------------------------------------------------------------------- */

.fuudys-inf-hero {
    background:
        radial-gradient(1100px 620px at 78% -10%, rgba(255,138,92,0.22), transparent 60%),
        radial-gradient(900px 500px at 8% 118%, rgba(200,154,75,0.16), transparent 55%),
        linear-gradient(180deg, #14110d 0%, var(--fuudys-char) 100%);
    color: var(--fuudys-cream);
    padding: 6rem 1.5rem 5rem;
    position: relative;
    overflow: hidden;
}

.fuudys-inf-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(ellipse 900px 500px at 70% 20%, black, transparent 70%);
    pointer-events: none;
}

.fuudys-inf-hero-inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.fuudys-inf-logo {
    height: 26px;
    width: auto;
    margin-bottom: 2.2rem;
    filter: invert(1) brightness(2.1) opacity(0.92);
}

.fuudys-inf-kicker {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.02rem;
    color: var(--fuudys-ember);
    margin-bottom: 1rem;
}

.fuudys-inf-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.4rem, 5.2vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
    margin: 0 0 1.4rem;
    text-wrap: balance;
    color: var(--fuudys-cream);
}

.fuudys-inf-hero h1 .glow {
    background: linear-gradient(100deg, var(--fuudys-ember), var(--fuudys-gold) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fuudys-inf-hero .lead {
    font-size: 1.12rem;
    line-height: 1.62;
    color: #d9d2c2;
    max-width: 32rem;
    margin: 0 0 2.2rem;
}

.fuudys-inf-hero .lead strong {
    color: var(--fuudys-cream);
    font-weight: 600;
}

.fuudys-inf-cta-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.8rem;
}

.fuudys-inf-hero .btn-primary {
    background: linear-gradient(100deg, var(--fuudys-accent), var(--fuudys-ember)) !important;
    border: none !important;
    color: #17120c !important;
    font-weight: 800;
}

.fuudys-inf-hero .btn-primary:hover {
    box-shadow: 0 18px 40px -12px rgba(255,138,92,0.55);
    transform: translateY(-2px);
}

.fuudys-inf-secondary-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--fuudys-cream);
    text-decoration: none;
    border-bottom: 1px solid rgba(250,246,234,0.3);
    padding: 0.6rem 0 0.6rem;
    display: inline-flex;
    align-items: center;
}

.fuudys-inf-secondary-link:hover {
    border-color: var(--fuudys-ember);
    color: var(--fuudys-ember);
}

.fuudys-inf-strip {
    display: flex;
    gap: 2.2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(250,246,234,0.14);
    padding-top: 1.6rem;
}

.fuudys-inf-strip .item {
    font-size: 0.82rem;
    color: #a89e8a;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.fuudys-inf-strip .item b {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--fuudys-cream);
    font-weight: 600;
}

/* Brand journey (editorial, on cream) */

.fuudys-journey {
    max-width: 780px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.fuudys-journey .dept {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fuudys-accent-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.fuudys-journey h2 {
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 2.5rem;
}

.fuudys-journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fuudys-journey-step {
    text-align: center;
}

.fuudys-journey-step .num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--fuudys-accent);
    margin-bottom: 0.6rem;
}

.fuudys-journey-step h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.fuudys-journey-step p {
    font-size: 0.88rem;
    color: var(--fuudys-ink-soft);
    line-height: 1.5;
}

/* Campaign / gig cards */

.fuudys-campaigns {
    background: var(--fuudys-cream-deep);
    padding: 4.5rem 1.5rem;
}

.fuudys-campaigns-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.fuudys-campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.fuudys-campaign-card {
    background: var(--fuudys-white);
    border: 1px solid var(--fuudys-line);
    border-radius: 18px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.fuudys-campaign-card .cat {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fuudys-accent-dark);
}

.fuudys-campaign-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

.fuudys-campaign-card .venue {
    font-size: 0.86rem;
    color: var(--fuudys-ink-soft);
}

.fuudys-campaign-card .desc {
    font-size: 0.9rem;
    color: var(--fuudys-ink-soft);
    line-height: 1.5;
}

.fuudys-campaign-card .comp {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--fuudys-ink);
    font-size: 1.02rem;
    padding-top: 0.6rem;
    border-top: 1px dashed var(--fuudys-line);
}

.fuudys-campaign-card .comp span {
    color: var(--fuudys-accent);
}

.fuudys-campaign-card details summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--fuudys-ink);
    padding: 0.7rem 0;
    border-top: 1px solid var(--fuudys-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fuudys-campaign-card details summary::-webkit-details-marker { display: none; }
.fuudys-campaign-card details summary::after { content: '+'; font-size: 1.2rem; }
.fuudys-campaign-card details[open] summary::after { content: '\2212'; }

.fuudys-apply-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-top: 0.6rem;
}

.fuudys-apply-form input,
.fuudys-apply-form textarea {
    width: 100%;
    padding: 0.6rem 0.9rem;
    border: 1px solid var(--fuudys-line);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    background: var(--fuudys-cream);
}

.fuudys-apply-form input:focus,
.fuudys-apply-form textarea:focus {
    outline: none;
    border-color: var(--fuudys-accent);
    box-shadow: 0 0 0 3px rgba(193,80,46,0.12);
}

.fuudys-apply-form button {
    align-self: flex-start;
}

.fuudys-no-campaigns {
    text-align: center;
    color: var(--fuudys-ink-soft);
    padding: 2rem;
}

/* Closing CTA */

.fuudys-inf-closing {
    background: var(--fuudys-ink);
    color: var(--fuudys-cream-deep);
    text-align: center;
    padding: 5rem 1.5rem;
}

.fuudys-inf-closing h2 {
    color: var(--fuudys-cream);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin-bottom: 1rem;
}

.fuudys-inf-closing p {
    max-width: 32rem;
    margin: 0 auto 2rem;
    color: #c9c2b0;
}

.fuudys-inf-closing .btn-primary {
    background: var(--fuudys-accent) !important;
    border-color: var(--fuudys-accent) !important;
}

.fuudys-inf-closing .btn-primary:hover {
    background: var(--fuudys-ember) !important;
    border-color: var(--fuudys-ember) !important;
    color: var(--fuudys-char) !important;
}

.fuudys-application-success {
    max-width: 720px;
    margin: 1.5rem auto 0;
    background: #e8f3e6;
    border: 1px solid #b6d9b0;
    color: #2c4a27;
    border-radius: 14px;
    padding: 1rem 1.3rem;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .fuudys-journey-steps {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        text-align: left;
    }

    .fuudys-journey-step {
        text-align: left;
        display: flex;
        gap: 0.9rem;
        align-items: flex-start;
    }

    .fuudys-journey-step .num {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 2rem;
    }

    .fuudys-inf-hero {
        padding: 3.5rem 1.25rem 3.5rem;
    }

    .fuudys-inf-cta-row {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .fuudys-inf-hero .btn-primary,
    .fuudys-inf-closing .btn-primary {
        width: 100%;
    }

    .fuudys-inf-secondary-link {
        justify-content: center;
    }

    .fuudys-campaign-card details summary {
        min-height: 44px;
    }

    .fuudys-apply-form button {
        align-self: stretch;
    }
}
